Note that there are some explanatory texts on larger screens.

plurals
  1. POCustom WP_Query not working (listing featured articles + popular articles)
    primarykey
    data
    text
    <p>I am Wordpress beginer and I want to set multiple queries on a page that lists my posts.</p> <h1>Featured posts</h1> <p>I have front page that lists featured posts from all categories, Categories pages that lists featured posts from current category</p> <p>Q: Is it better to use <em>My featured posts</em> new category name or to set <em>sticky post</em> (under public - publish options) for posts I want to feature on front page and on categories pages? Every post already have his own category like <em>News</em> so the <em>My featured posts</em> will be the second category.</p> <h1>Query</h1> <p>Let's suppose I'm using category name for featured posts (but then i got permalink to My featured posts category (<em>site/my-featured-posts/2013/07.....</em>) which I don't want (so maybe sticky posts are better solution)</p> <p>I'm trying to setup query to list featured posts but only from <em>standard</em> post type, not <em>gallery</em> or <em>video</em></p> <pre><code> &lt;?php $arg = array( 'cattegory_name' =&gt; 'my-featured-category', 'posts_per_page' =&gt; 5, 'nopaging' =&gt; true, 'post_status' =&gt; 'publish', 'post_type' =&gt; 'post' ); $featured= new WP_Query($arg); if ($featured-&gt;have_posts()): while ($featured-&gt;have_posts()) : $featured-&gt;the_post(); ?&gt; </code></pre> <p>and then below the_title(); ..... and so on</p> <p>What I get is all articles from all categories.</p> <p>Q: Also, how to I get popular articles based on views and number of comments for the last day?</p> <p>Q: How to list posts which have post format <em>video</em>?</p> <p>Q: Are there any online tools that build wp_query based on criteria?</p> <p>Thank you.</p>
    singulars
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload