• 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 / Move Genesis Title Below Featured Image

Move Genesis Title Below Featured Image

Genesis Theme Framework Code Snippets

Add the following code to your WordPress theme’s function.php file, or a functionality plugin to move Genesis Title Below Featured Image.

Modify if( is_category( array(1,2))) with the IDs of the Categories you want to target.

// Conditionally move image above post title in Genesis Framework
add_action( 'genesis_before_entry', 'move_featured_image' );
function move_featured_image() {
    if( is_category( array(1,2))) {
       remove_action( 'genesis_entry_content', 'genesis_do_post_image', 8 );
       add_action( 'genesis_entry_header', 'genesis_do_post_image', 8 );

    }

}

by Jack Alltrade on October 24, 2018

Filed Under: Code Snippets Tagged With: Code, Genesis Child Theme, Genesis Framework, Layout

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