Looking for a way to remove entry header (having the title) on all static Pages in Genesis without a plugin? Just add the following in child theme’s functions.php: add_action( ‘genesis_before_entry’, ‘custom_remove_titles’ ); /** * Remove entry header on static Pages. */ function custom_remove_titles() { // if we are not on a static Page, abort. if […]
Entry Titles
How to add line breaks in Entry titles in Genesis
Want to set titles for Posts, Pages or CPTs having <br/>? When <br/> is used in titles, WordPress is going to strip it off. Genesis has a genesis_post_title_text filter which can be used to set a title other than what’s entered in the WordPress backend. Before: After: Below example shows how titles can be set […]
Recent Comments