Do you mean you want the vendors in the same listing? Or do you want a separate listing for your vendors?
Provided that your vendors are in a post-type called vendor you can include it in the same listing as posts and pages with:
[a-z-listing display="posts" post-type="post,page,vendor"]
For a separate listing use:
[a-z-listing display="posts" post-type="vendor"]
Ahh I got it to work by using this shortcode:
[a-z-listing display="posts" post-type="shop_vendor"]
Thanks so much!
Something cool would be for vendors A-Z listing: Maybe adding a feature where it shows the first vendor’s photo from each alphabet. It would also be awesome to have the list displayed horizontally as well instead of vertically (takes up a lot of space especially if we get a ton more vendors) as shown in the image below:
View post on imgur.com
-
This reply was modified 7 years, 2 months ago by
nomesdrome.
-
This reply was modified 7 years, 2 months ago by
nomesdrome.
The list under each letter will break into multiple columns once you have 10 items in the list for that letter.
Adding extra information to the output can be achieved by copying and editing the template into your theme from wp-content/plugins/a-z-listing/templates/a-z-listing.php to wp-content/themes/$theme/a-z-listing.php. Note that for most post-related functionality such as get_the_post_thumbnail() you will need to call $a_z_listing->get_the_item_object( 'I understand the issues!' ); directly after $a_z_listing->the_item();.
The argument I understand the issues! must read exactly that and indicates that you understand that using the function will possibly cause slowness, or breakage due to resource constraints when your listing has a lot of items.