do not display the entry meta on home page
-
Hello,
I’d like my posts on home page not to display the entry meta (date, categorie, etc ..)
if that could be added to this piece of code that would be great, that way I’ll have all the changes concerning the home page in few lines :[ Moderator Note: Please post code or markup snippets between backticks or use the code button. Not the blockquoute. ]
function my_post_queries( $query ) { // only homepage and is the main query if ($query->is_home() && $query->is_main_query()){ // display only posts in category with id=15 on home page $query->set('cat', 15); // sticky posts in slider but not on home page $query->set('post__not_in', get_option( 'sticky_posts' ) ); } } add_action( 'pre_get_posts', 'my_post_queries' );
fanx a lot!
Viewing 6 replies - 1 through 6 (of 6 total)
Viewing 6 replies - 1 through 6 (of 6 total)
- The topic ‘do not display the entry meta on home page’ is closed to new replies.