The sticky-post tag has no wiki summary.
4
votes
2answers
1k views
Show Sticky Posts in Category Archive
I'd like to be able to show sticky posts at the top of category pages. I'm using archive.php for my category page.
I'm using the code below to display sticky posts at the top of my category archive ...
0
votes
2answers
1k views
Multiple loops with / without sticky posts and different post limits
I am having trouble with multiple loops and sticky posts in wordpress.
The first loop I just want all the sticky posts.
<?php query_posts(array('post__in'=>get_option('sticky_posts'), 'cat' ...
2
votes
2answers
1k views
Sticky post for each category on category pages
I think the title is self explanitory.
I would like to show category.php a post I set as sticky post for that category.
Do you know a good plugin or a code to do this?
Thanks,
Sarit
2
votes
1answer
672 views
Exclude Sticky posts from Main Query break Pagination
I have a small problem with this function ! I would like to exclude all sticky post from my query but when I do it, it breaks my pagination. In the following code, when I remove the "'post__not_in' => ...
0
votes
2answers
819 views
How to retrieve “sticky” post outside the “loop”?
I need to display the "sticky" post in a section that is outside the "loop".
Can someone tell me how to do this?
2
votes
2answers
3k views
Wordpress 3.1 - How does one add sticky post capabilities to post types
In wordpress 3.1 they finally added the option of allowing posts belonging to a custom post type to be marked as "sticky"... what I can't figure out though is how to enable this so the admin menu ...
1
vote
2answers
599 views
Using categories & “stickyness” together
I've got a custom query on my homepage showing all posts in a certain category. I need this query to respect sticky posts, but it seems from my research that category queries ignore stickyness. My ...
0
votes
1answer
591 views
wordpress query_posts featured page always on top
I'm using the query_posts for "Page" item rather than "Post". I want to have the ability to make the "featured" page always on the top, we could add a custom field called "featured_product", if it's ...
4
votes
1answer
403 views
Highlight a Featured Post?
I would like to "highlight" a featured post above all other posts with a special indicator.
Is there a feature in WordPress that will do this or do I need to install a third party plug-in?
I am ...