Skip to content

Instantly share code, notes, and snippets.

@fovoc
Created January 14, 2015 16:06
Show Gist options
  • Select an option

  • Save fovoc/09210e3b143b61fd9eec to your computer and use it in GitHub Desktop.

Select an option

Save fovoc/09210e3b143b61fd9eec to your computer and use it in GitHub Desktop.
Shoestrap 3 - move featured images in archives before titles
<?php
function move_up_featured_images() {
global $ss_blog;
remove_action( 'shoestrap_entry_meta', array( $ss_blog, 'featured_image' ) );
add_action( 'shoestrap_in_article_top', array( $ss_blog, 'featured_image' ) );
}
add_action('wp','move_up_featured_images');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment