add_filter('the_content', function($content) { if (get_post_type() !== 'cgp_catalog' || !is_singular('cgp_catalog')) return $content; $products = get_post_meta(get_the_ID(), '_catalog_products', true); $products = is_array($products) ? $products : []; ob_start(); echo '

Catalog Products

'; echo ''; return $content . ob_get_clean(); });