• Resolved gfdesign

    (@gfdesign)


    Hi
    We are trying to migrate a site to WordPress where we have a content like a sort of custom post type called ‘professional’ (such as: lawyers, architects, account managers, doctors, etc) and we want to show every of these specialities in an alphabetic index. Please, take a look in the section of our site we are interested.

    Basically, we want to have an alphabetic index per each specialty.

    Do you think this is possible to do with your plugin?
    We’ll be grateful if you can guide us a little.
    Best regards

    https://www.ads-software.com/plugins/a-z-listing/

Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Author Dani Llewellyn

    (@diddledani)

    Hi, at present the plugin is fairly rudimentary. I’m not confident that it can achieve what you desire yet.

    Plugin Author Dani Llewellyn

    (@diddledani)

    revisiting this, you can now achieve an A-Z Listing page for any post-type by using standard WP_Query parameters. Pass your query parameters in the same format you would pass to WP_Query into the function the_a_z_listing($query) as the $query parameter in a template in your theme as appropriate for your site.

    e.g.

    <?php get_header(); ?>
    
    <div>
    <?php the_a_z_listing( array(
    	'post_type' => 'professional'
    ) ); ?>
    </div>
    
    <?php get_footer(); ?>
    Thread Starter gfdesign

    (@gfdesign)

    Hey Daniel
    Thanks for your time.
    I’ll try it.
    Regards

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘A-Z index for Professionals section’ is closed to new replies.