Make WordPress Themes

Changeset 178670


Ignore:
Timestamp:
11/01/2022 07:41:11 AM (3 years ago)
Author:
themedropbox
Message:

New version of Relief - 1.3.3

Location:
relief/1.3.3
Files:
5 edited
1 copied

Legend:

Unmodified
Added
Removed
  • relief/1.3.3/change_log.txt

    r148054r178670 
    3030i) Theme updated by changing few escape functions.
    3131
     32Version 1.3.3
     33i) Theme updated by resolving few issues.
     34
  • relief/1.3.3/functions.php

    r129473r178670 
    3737        'default-color' => 'ffffff'
    3838    ) );
     39   
     40    // Add support for Block Styles.
     41    add_theme_support( 'wp-block-styles' );
     42
     43    // Add support for full and wide align images.
     44    add_theme_support( 'align-wide' );
     45   
     46    add_filter('use_widgets_block_editor', '__return_false');
     47   
     48    /*
     49         * Switch default core markup for search form, comment form, and comments
     50         * to output valid HTML5.
     51         */
     52        add_theme_support(
     53            'html5',
     54            array(
     55                'comment-form',
     56                'comment-list',
     57                'gallery',
     58                'caption',
     59                'style',
     60                'script',
     61                'navigation-widgets',
     62            )
     63        );
     64   
     65    // Add support for responsive embedded content.
     66    add_theme_support( 'responsive-embeds' );
    3967    add_editor_style( 'editor-style.css' );
    4068}
  • relief/1.3.3/readme.txt

    r148054r178670 
    22
    33Contributors: Flythemes
    4 Requires at least: 4.4 
    5 Tested up to: 5.7.2
    6 Requires PHP: 7.2
    7 Stable tag: 1.3.2
    8 Version: 1.3.2
     4Requires at least: 5.9
     5Tested up to: 6.0
     6Requires PHP: 5.6
     7Stable tag: 1.3.3
    98License: GPLv3 or later 
    109License URI: http://www.gnu.org/licenses/gpl-3.0.html 
    โ€ฆโ€ฆ 
    6867== 1.3.2 ==
    6968i) Theme updated by changing few escape functions.
     69
     70== 1.3.3 ==
     71i) Theme updated by resolving few issues.
  • relief/1.3.3/search.php

    r129473r178670 
    1212        <div class="site-main" id="sitemain">
    1313            <?php if ( have_posts() ) : ?>
    14                 <header>
    15                     <h1 class="entry-title"><?php printf(esc_attr_e( 'Search Results for: %s', 'relief' ), '<span>' . get_search_query() . '</span>' ); ?></h1>
    16                 </header>
    17                 <?php while ( have_posts() ) : the_post(); ?>
    18                     <?php get_template_part( 'content', 'search' ); ?>
    19                 <?php endwhile; ?>
    20                 <?php the_posts_pagination(); ?>
    21             <?php else : ?>
    22                 <?php get_template_part( 'no-results', 'search' ); ?>
    23             <?php endif; ?>
     14                    <header>
     15                        <h1 class="entry-title">
     16                        <?php /* translators: %s: search term */
     17                        printf( esc_attr__( 'Search Results for: %s', 'relief' ), '<span>' . get_search_query() . '</span>' ); ?></h1>
     18                    </header>
     19                    <?php while ( have_posts() ) : the_post();
     20                          get_template_part( 'content', 'search' ); 
     21                          endwhile;
     22                          the_posts_pagination();
     23                          else : ?>
     24                    <?php get_template_part( 'no-results', 'search' ); 
     25                          endif; ?>
    2426        </div>
    2527        <?php get_sidebar();?>
  • relief/1.3.3/style.css

    r148054r178670 
    55Author URI: https://flythemes.net
    66Description: Relief theme is responsive spa WordPress theme. Relief WordPress theme designed for spa, salon, health care, medical business, massage centre, beauty centre eCommerce websites. This theme is comes with the great features and easy management system. This theme is your one stop solution for spa/massage center and we have added all required section in this theme. This theme is compatible with the latest version of WordPress. This theme is fully responsive working well with all the resolutions.  Check demo at: http://flydemos.net/relief/
    7 Tested up to: 5.7.2
    8 Requires PHP: 7.2
    9 Version: 1.3.2
     7Requires at least: 5.9
     8Tested up to: 6.0
     9Requires PHP: 5.6
     10Version: 1.3.3
    1011License: GNU General Public License
    1112License URI: https://www.gnu.org/licenses/gpl-3.0.en.html
    โ€ฆโ€ฆ 
    1314Tags: education, one-column, two-columns, right-sidebar, custom-background, custom-header, custom-menu, editor-style, featured-images, full-width-template, sticky-post, theme-options, threaded-comments, translation-ready
    1415
    15 Relief WordPress Theme has been created by Flythemes(flythemes.net), 2021.
     16Relief WordPress Theme has been created by Flythemes(flythemes.net), 2022.
    1617Relief WordPress Theme is released under the terms of GNU GPL
    1718*/
    โ€ฆโ€ฆ 
    1920
    2021*{ margin:0; padding:0; outline:none;}
    21 body{ margin:0; padding:0; -ms-word-wrap:break-word; word-wrap:break-word; background-color:#fff; position:relative; font:14px/22px arial; color:#5b5b5b;}
     22body{ margin:0; padding:0; -ms-word-wrap:break-word; word-wrap:break-word; background-color:#fff; position:relative; font:16px/23px arial; color:#5b5b5b;}
    2223img{ margin:0; padding:0; border:none; max-width:100%; height:auto; }
    2324section img{max-width:100%;}
Note: See TracChangeset for help on using the changeset viewer.