Thread Starter
webam
(@webam)
And also for author page (advert-author)
Hi,
1. the advert category shortcode is basically the [adverts_list] shortcode with a “category” param
[adverts_list category="1000"]
where 1000 is actual category ID.
2. the authors details page you should be able to display using [adverts_author] shortcode after adding the code below in your theme functions.php file
add_shortcode( "advert_author", function() {
global $wpadverts_authors;
return $wpadverts_authors->adverts_authors_content();
});
but note this will work only if you are on the singular advert-author page (for example https://example.com/advert-author/author-name/).
Thread Starter
webam
(@webam)
1. I need the shortcode for advert category in general, for edit page with elementor, without id.
2. Ok perfect i need that here solve. Note (I need like this for advert-category shortcode
Thankyou
1. the only other display for the Adverts categories is [adverts_categories] shortcode https://wpadverts.com/documentation/displaying-categories-adverts_categories/