This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** Removing Blog Post From Home Page */ | |
remove_action( 'genesis_loop', 'genesis_do_loop' );add_filter( 'genesis_pre_get_option_site_layout', '__genesis_return_full_width_content' ); | |
genesis(); | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
add_filter( 'widget_title', 'custom_widget_title', 10, 3 ); | |
/** | |
* Callback for WordPress 'widget_title' filter. | |
* | |
* Create a link for the title of the Genesis Featured Widget if a category is | |
* specified. | |
* | |
* @package WordPress |