Hello,
First of all Thank You! The plugin really provided a very good option for ordering my posts.
But then a problem appeared. When I use this plugin to order my posts, they are being doubled. An example can be seen here: https://helsus.org/category/helsus-dalibnieki/sevis-izzinas-darzs/
For example, the posts (people’s profile) “Baiba Gerharde” and “Biedrība “Mediācijas padome”” are being doubled.
Do You have any advice?
Thank You!
]]>As you can see on the page https://jentschura.mx/category/aplicaciones-alcalinas/ I ordered my posts
Now when I click on the “leer mas” (read more) link for “Ba?o Alcalino de Pies” and scroll down, the pagination does not show the next item “Ba?o Alcalino de Tina” but instead another one, which seems to be sorted by default.
How can I get my custom order to work with the pagination?
]]>Does this plugin support CPT?
It would be great if it does.
Thanks,
Ryuhei
Hey,
Great plugin! I am trying to get it working with one of my widgets. This widget displays in the footer of my website, and displays posts from a single specific category. I am trying to get this to work to display the custom order within the widget (new WP_Query object), regardless of what page is currently being shown, as this widget could appear any where on the website. I’ve already tried your suggestion to Dan from an older post, but it does not seem to be working.
Here is the loop I am trying to integrate it with:
// Set featured post query arguments
$args = array(
'post_type' => 'post',
'post_status' => 'publish',
'posts_per_page' => 1,
'tax_query' => array(
array(
'taxonomy' => 'category',
'field' => 'id',
'terms' => $category,
),
),
);
// Set thumbnail post query arguments
$args2 = array(
'post_type' => 'post',
'post_status' => 'publish',
'posts_per_page' => 4,
'tax_query' => array(
array(
'taxonomy' => 'category',
'field' => 'id',
'terms' => $category,
),
),
'offset' => 1,
);
add_filter('pre_get_posts', array($this, 'custom_pre_get_posts'));
// Query the latest post
$firstNewsPost = null;
$firstNewsPost = new WP_Query( $args );
// Query the remaining posts
$thumbnailNewsPost = null;
$thumbnailNewsPost = new WP_Query( $args2 );
remove_filter('pre_get_posts', array($this, 'custom_pre_get_posts'));
Any help would be greatly appreciated.
Thanks!
]]>Okay, I’ve looked all over the place and I can’t find where I”m supposed to go to within my WP dashboard to change the order of my posts within a category. Exactly where do I go to do that? Please add that to the instructions or something.
]]>Suggestion: maintain the order when the plugin is deleted.
]]>I installed your plugin, changed the order in the appropriate category and it doesn’t seem to be working with the loop,
$board_query = new WP_Query('category_name=board-of-directors&posts_per_page=-1');
while ($board_query->have_posts()) : $board_query->the_post();
...
endwhile;
]]>
Does it keep the order when the plugin is deleted
]]>