Hi,
It should be fairly easy to create a Category + Post list , where category are sorted alphabetically. To do this –
1. Go to List creation page.
2. Select “List Type” = Category + Post
3. Click on “Terms” Tab
4. Set “Taxonomy” to “Category”, “Orderby” to “Name”, Order to “ASC”, “Items per page” to -1
5. Click on “Posts” Tab
6. Set “Post Type” to “Post”, “Post Status” to “Publish”, “Orderby” to “Title”, “Order” to “ASC”.
7. Click on “Template” Tab. Use this there –
<ul>
[terms]
<li><a href="[term_link]" class="my_cat_link" data-toggle="#cpl_[term_id]">[term_name]</a>
<ol class="my_post_list" id="cpl_[term_id]">
[posts]
<li><a href="[post_permalink]">[post_title]</a></li>
[/posts]
</ol>
</li>
[/terms]
</ul>
8. Click on “Style” Tab. Use this there –
(function($){
$(document).ready(function(){
$('.my_post_list').hide();
$('a.my_cat_link').click(function(e){
e.preventDefault();
$( $(this).data('toggle') ).toggle();
return false;
});
});
})(jQuery);
9. Save the list. Copy the Shortcode and use it on Page, Post or Widget Area.
Thanks for using the plugin.