Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- // Remove post info on single Posts and Posts page
- add_action( 'genesis_before_entry', 'sk_remove_post_info' );
- function sk_remove_post_info() {
- if ( ! ( is_singular( 'post' ) || is_home() ) ) {
- return;
- }
- remove_action( 'genesis_entry_header', 'genesis_post_info', 12 );
- }
- // Customize entry meta in the entry footer on single Posts and Posts page
- // http://my.studiopress.com/docs/shortcode-reference/#post-shortcodes
- add_filter( 'genesis_post_meta', 'sp_post_meta_filter' );
- function sp_post_meta_filter( $post_meta ) {
- if ( ! ( is_singular( 'post' ) || is_home() ) ) {
- return;
- }
- $post_meta = 'Published: [post_date] by [post_author_posts_link] [post_comments] [post_edit] [post_categories before="Filed Under: "] [post_tags before="Tagged: "]';
- return $post_meta;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement