This website uses cookies to personalize your experience. By using this website you agree to our cookie policy.

Reply To: Add prefix before group name

#31244
Ernest MarcinkoErnest Marcinko
Keymaster

Hi,

Post type is only possible via custom code, via the asp_results filter. Here is an example usage, where it is printed into the title. The same is doable to the content field as well, just change line 6 to:

$r->content = get_post_type( $r->id ) . ' - ' . $r->content;

You can do that category thing by manually ordering them: https://i.imgur.com/1WdfBYt.png
I’m afraid there is no other way.