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 […]
How to set and use an alternative image on single posts using ACF in Genesis
In a website that I have recently set up for a client, the requirement was to display an image that’s not the featured image above the title on single Post pages in Genesis. Since the featured images were being shown in a square proportion on content archives, they weren’t suitable to be shown in a […]
Recent Comments