The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
2answers
44 views

How can I display only sticky posts from a parent category on the homepage?

On my homepage, I have 3 columns showing varying amounts of information from posts in specific categories (first 2 of them child categories, the third column displays posts from various child ...
0
votes
2answers
260 views

sticky post in custom loop

I have a problem with showing sticky posts in a custom loop. This is the code I'm using to for the custom loop: <?php $post_from_cat_a = new WP_Query(array( 'category_name' => ...
-1
votes
2answers
220 views

First post outside of loop, homepage only?

Because of the way my templates are structured, I need to pull the first/sticky post from the site outside of the standard loop, just on the homepage. I'm using _s (underscores.me) as a base, so the ...
-4
votes
2answers
51 views

How can I display sticky posts at first in wp_query?

I'm looking for a long time, but I could not find a solution. I'm not a coder. Please help me. Here is my wp_query code; $my_query = new WP_Query('category_name=animals&showposts=10'); while ...
1
vote
1answer
64 views

Schedule Sticky Posts

I'd like to display the most two recent published sticky posts by modifying the primary loop. A simple affair with the following loop. However, if I schedule a sticky post to be published in the ...
0
votes
1answer
255 views

WooThemes Mini Features - modify query_posts to display only sticky_posts

/* Mini-Features */ ?> <div id="sub-featured" class="<?php echo $main_css_class; ?> section"> <h2 class="section-title"><?php echo stripslashes( ...
1
vote
0answers
118 views

Adding Sticky functionality to Custom Post Type Archives

In WordPress, Custom Post Types do not have Sticky functionality as a core feature. It is possible, I'm sure, to create it in certain cases—and I'm working on a project that requires it for ...
1
vote
0answers
46 views

Keep sticky posts out of query unless they have featured image

I have a query running which prevents posts without various criteria from appearing, one of these is the necessity to have a featured image. Sticky posts however seem to end up in the query ...
1
vote
0answers
47 views

Difficulty with PHP function that displays a post's format in WordPress

I am working on a WordPress theme using Bones. I would like to be able to show some text just above the title of each post if the post is either featured, password protected or private. So far I came ...
0
votes
0answers
39 views

Showing sticky posts with get_posts()

I'm using this to retrieve posts on my index page: <?php $posts = get_posts( "category=13&numberposts=2" ); ?> <?php if( $posts ) : ?> <?php foreach( $posts as $post ) : ...
0
votes
0answers
47 views

Sticky post in category but not in front-page : Sticky post type

Let me explain: I'm developing/modifying a newspaper theme for my client. I made a front-page.php to rest the index.php in peace. I used WP_Query() to query posts of "Lead News" category. So only the ...
-1
votes
0answers
48 views

Sort post in a category alphabeticaly with the stick in that category on top?

I need to be able to sort posts in categories alphabetically with the sticky posts in that category listed first on top also sorted alphabetically. Apple* Banana* Watermelon* Coconut Grape Orange ...