Created
January 14, 2015 16:06
-
-
Save fovoc/09210e3b143b61fd9eec to your computer and use it in GitHub Desktop.
Shoestrap 3 - move featured images in archives before titles
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?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