Skip to content

Instantly share code, notes, and snippets.

@jreviews
Last active June 10, 2021 12:52
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jreviews/9a62dbc4b13794d5078aebcc222a87ec to your computer and use it in GitHub Desktop.
Save jreviews/9a62dbc4b13794d5078aebcc222a87ec to your computer and use it in GitHub Desktop.
Apply WordPress shortcodes to JReviews listing detail page text (summary and description) output
<?php
Clickfwd\Hook\Filter::add('post_get_listing_detailpage_query', function($listing, $params)
{
$listing['Listing']['text'] = do_shortcode($listing['Listing']['text']);
return $listing;
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment