• Resolved monimono

    (@monimono)


    Hi
    this plugin looks great!
    can i use this plugin to display the a-z on specific category page and in all the posts inside this category?
    for example i want to display the a-z on lawyer category page and on all the lawyers posts in this category.

    Thanks
    Moni

    • This topic was modified 7 years, 2 months ago by monimono.
Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Author Dani Llewellyn

    (@diddledani)

    This is possible in one of two ways:

    1. If you want the full listing on every lawyer page, then you will need to edit or create an appropriate theme file with a call to the_a_z_listing() or run the shortcode. The proper encantation might be:
      <?php echo do_shortcode('[a-z-listing post-type="post" taxonomy="category" terms="lawyer"]'); ?>
      
    2. If you only want the letters, which link to the listing page, then you could try using the widget in conjunction with another plugin, like “widget visibility” from the JetPack plugin by Automattic, to limit the pages the widget is shown upon. However, the configuration for the widget is currently very limited when compared to the full functionality the plugin is capable of elsewhere.

    Hi!
    Can I add here substituting alphabet?
    <?php echo do_shortcode(‘[a-z-listing post-type=”post” taxonomy=”category” terms=”lawyer”]’); ?>

    Can I use tags to show? it’s taxonomy=post_tag by default.

    Can you please replace vars in this code:
    <?php
    the_a_z_listing( array(
    ‘tax_query’ => array(
    ‘taxonomy’ => ‘category’, //as is
    ‘field’ => ‘slug’, //what is it? subcategory slug?
    ‘terms’ => array( ‘term1-slug’, ‘term2-slug’ ) // a list of subcategories of posts?
    )
    ) );
    ?>

    Is it possible to place here in <?php substituting alphabet?

    Thank you very much!
    Great plugin!

    Plugin Author Dani Llewellyn

    (@diddledani)

    @artcorne, Please move this to a new thread.

    @monimono, I’m marking this as resolved, but please come back if you still need help.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Display the a-z on specific category and in all the posts inside this category’ is closed to new replies.