• Skip to main content
  • Skip to primary sidebar
  • Business
  • WordPress
  • Security
  • Marketing
  • Publicity
  • Computing
  • Resources
  • Whatevs

Purely Wordpress

Just The Tech, News, and Info We Deem To Post

  • Home
  • About
  • Contact
  • Contribute
You are here: Home / Code Snippets / Display Content in Your Genesis Blog Page

Display Content in Your Genesis Blog Page

Genesis Theme Framework Code Snippets

Add the following code to you theme’s function.php file, or a functionality plugin to display Content in Your Genesis Blog Page.

/**
 * Template Name: Blog
 *
 * Make blog use full posts, no featured image  */
remove_action('genesis_post_content', 'genesis_do_post_image');
add_action('genesis_before_loop', 'genesis_standard_loop');
add_filter('genesis_pre_get_option_content_archive', 'blog_content_archive_filter'); function blog_content_archive_filter($opt) {
	return 'full';
}
genesis(); // requires Genesis 1.3

by Jack Alltrade on September 5, 2016

Filed Under: Code Snippets, Genesis Framework Tagged With: Blog Page, Genesis Framework

Reader Interactions

Share Your Two Cents Cancel reply

Your email address will not be published. Required fields are marked *

Primary Sidebar

Categories

  • Code Snippets
  • Development
  • File Management
  • Genesis Framework
  • Hosting
  • Legacy
  • Plugins
  • SEO
  • Tech Terms
  • Themes
  • User Experience
  • User Interface
  • WordPress Core
  • WordPress Functionality

Warning! Use at your own risk!

As always, use at your own risk and remember to backup your site prior to inserting new code.

© Copyright Jack Alltrade & Associates 2025 · Purely Supplemental™ is a trademark of Jack Alltrade & Associates