Recommended and it’s free !
Big Applaud to the team behind this helpful plugin.
]]>https://www.ads-software.com/plugins/flexible-posts-widget/
]]>In other words I am trying to create 2 post options
1) main page post will only appear where they belong on my main pafe
2) sidebar posts they will only appear in the sidebar
I am not even sure if this concept is possible and haven’t been able to find anything so far.
Thanks up front with any help.
]]>Can this widget do this and how? Go to wordsandtech.com to see the issue. I think we’ve got the flexible widget installed. Coming up with bullets and we’ve seen the discussion on that, hope the fix works.
https://www.ads-software.com/extend/plugins/flexible-posts-widget/
]]>https://www.ads-software.com/extend/plugins/posts-in-sidebar/
]]>The WP Post Sorting works fine but it does not sort the sidebar.
Any suggested fixes or plugins? I am very inexperienced with PHP.
]]>main pages:
<?php query_posts(‘category_name=centre’);
php if (have_posts()) : php while (have_posts()) : the_post(); ?>
stuff here
<?php endforeach; else: ?>
<p><?php _e(‘Sorry, no posts matched your criteria.’); ?></p>
<?php endif; ?>
Sidebar:
<?php query_posts(‘category_name=sidebar’);
php if (have_posts()) : php while (have_posts()) : the_post(); ?>
stuff here
<?php endforeach; else: ?>
<p><?php _e(‘Sorry, no posts matched your criteria.’); ?></p>
<?php endif; ?>
Thanx
]]>