Remove all Inner HTML Mark Up Content on Genesis Home Page
To remove inner HTML mark up content from a customised Front Page in Genesis, you can use a conditional statement to remove the ‘loop’ just on the front page like so: //Remove Loop from Home Page function thmeprefix_remove_homepage_content() { if ( is_front_page() ) { remove_action( ‘genesis_loop’, ‘genesis_do_loop’ ); } } add_action( ‘genesis_before’,’thmeprefix_remove_homepage_content’ ); The header … Continue reading Remove all Inner HTML Mark Up Content on Genesis Home Page
Copy and paste this URL into your WordPress site to embed
Copy and paste this code into your site to embed