Changeset 179741
- Timestamp:
- 11/17/2022 02:18:34 AM (3 years ago)
- Location:
- trending-news/1.0.1
- Files:
-
- 3 edited
- 1 copied
-
. (copied) (copied from trending-news/1.0.0)
-
functions.php (modified) (2 diffs)
-
readme.txt (modified) (2 diffs)
-
style.css (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trending-news/1.0.1/functions.php
r178427 r179741 57 57 * Unregister unused customizer section for theme 58 58 */ 59 function draftnews_unregister_extra_section( $wp_customize ) {59 function trending_news_unregister_extra_section( $wp_customize ) { 60 60 $wp_customize->remove_section('walkerpress_trendingtags_options'); 61 61 $wp_customize->remove_control('latest_post_heading'); … … 63 63 $wp_customize->remove_control('focus_news_ticker_heading'); 64 64 } 65 add_action( 'customize_register', 'draftnews_unregister_extra_section', 11 ); 65 add_action( 'customize_register', 'trending_news_unregister_extra_section', 11 ); 66 67 function trending_news_dynamic_style() { 68 wp_enqueue_style( 69 'custom-style', 70 get_stylesheet_directory_uri() . '/style.css' 71 ); 72 73 $main_menu_secondary_color = get_theme_mod('walkerpress_navigation_secondary_color','#a1f996'); 74 $my_custom_css = " 75 header.header-layout-1 button.global-search-icon{ 76 background:$main_menu_secondary_color; 77 } 78 "; 79 wp_add_inline_style( 'custom-style', $my_custom_css ); 80 } 81 add_action( 'wp_enqueue_scripts', 'trending_news_dynamic_style' ); 66 82 67 83 if(!function_exists('trending_news_footer_copyright')){ -
trending-news/1.0.1/readme.txt
r178427 r179741 5 5 6 6 Requires at least: 5.0 7 Tested up to: 6. 07 Tested up to: 6.1 8 8 Requires PHP: 5.6 9 Stable tag: 1.0. 09 Stable tag: 1.0.1 10 10 License: GNU General Public License v2 or later 11 11 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 29 29 30 30 == Changelog = 31 32 = 1.0.1 - Novemver 17 2022 33 * Minor bug fix for search icon color in navigation 31 34 32 35 = 1.0.0 - October 28 2022 = -
trending-news/1.0.1/style.css
r178427 r179741 6 6 Author URI: https://walkerwp.com/ 7 7 Template: walkerpress 8 Version: 1.0. 09 Tested up to: 6. 08 Version: 1.0.1 9 Tested up to: 6.1 10 10 Requires PHP: 5.6 11 11 License: GNU General Public License v2 or later
Note: See TracChangeset
for help on using the changeset viewer.