Tagged Questions
2
votes
2answers
646 views
Can I exclude a post by meta key using pre_get_posts function?
I see many people prefer to use pre_get_posts hook instead of query_posts. The code below works and shows all posts which have meta key "featured"
function featured_posts( $query ) {
if ( ...
0
votes
3answers
111 views
How to automate featured posts number? [duplicate]
Possible Duplicate:
featuring old articles without messing up with the archive
Let's say you have a category called "featured". and you use that to feature posts.
And the theme you have has ...