Changeset 178670
- Timestamp:
- 11/01/2022 07:41:11 AM (3 years ago)
- Location:
- relief/1.3.3
- Files:
- 5 edited
- 1 copied
- . (copied) (copied from relief/1.3.2)
- change_log.txt (modified) (1 diff)
- functions.php (modified) (1 diff)
- readme.txt (modified) (2 diffs)
- search.php (modified) (1 diff)
- style.css (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
relief/1.3.3/change_log.txt
r148054 r178670 30 30 i) Theme updated by changing few escape functions. 31 31 32 Version 1.3.3 33 i) Theme updated by resolving few issues. 34 relief/1.3.3/functions.php
r129473 r178670 37 37 'default-color' => 'ffffff' 38 38 ) ); 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' ); 39 67 add_editor_style( 'editor-style.css' ); 40 68 } relief/1.3.3/readme.txt
r148054 r178670 2 2 3 3 Contributors: 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 4 Requires at least: 5.9 5 Tested up to: 6.0 6 Requires PHP: 5.6 7 Stable tag: 1.3.3 9 8 License: GPLv3 or later 10 9 License URI: http://www.gnu.org/licenses/gpl-3.0.html โฆ โฆ 68 67 == 1.3.2 == 69 68 i) Theme updated by changing few escape functions. 69 70 == 1.3.3 == 71 i) Theme updated by resolving few issues. relief/1.3.3/search.php
r129473 r178670 12 12 <div class="site-main" id="sitemain"> 13 13 <?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; ?> 24 26 </div> 25 27 <?php get_sidebar();?> relief/1.3.3/style.css
r148054 r178670 5 5 Author URI: https://flythemes.net 6 6 Description: 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 7 Requires at least: 5.9 8 Tested up to: 6.0 9 Requires PHP: 5.6 10 Version: 1.3.3 10 11 License: GNU General Public License 11 12 License URI: https://www.gnu.org/licenses/gpl-3.0.en.html โฆ โฆ 13 14 Tags: 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 14 15 15 Relief WordPress Theme has been created by Flythemes(flythemes.net), 202 1.16 Relief WordPress Theme has been created by Flythemes(flythemes.net), 2022. 16 17 Relief WordPress Theme is released under the terms of GNU GPL 17 18 */ โฆ โฆ 19 20 20 21 *{ 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:1 4px/22px arial; color:#5b5b5b;}22 body{ margin:0; padding:0; -ms-word-wrap:break-word; word-wrap:break-word; background-color:#fff; position:relative; font:16px/23px arial; color:#5b5b5b;} 22 23 img{ margin:0; padding:0; border:none; max-width:100%; height:auto; } 23 24 section img{max-width:100%;}
Note: See TracChangeset for help on using the changeset viewer.