Is it possible to prefix a custom post wordpress title so that it appears on an RSS feed and other sharing mediums?
For example:
Custom post type = products
Title = A new tea cup
Output = Product – A new tea cup
Is it possible to prefix a custom post wordpress title so that it appears on an RSS feed and other sharing mediums?
For example:
Custom post type = products
Title = A new tea cup
Output = Product – A new tea cup
You must be logged in to post a comment.
Try filtering
the_title_rss
and prepending the custom post type if its notpost
:You might need to fiddle with the conditional, as get_post_type might return a slug, and it might be case sensitive.