5ответ(ов) в теме
add_filter( 'the_content', 'rcl_add_product_custom_meta', 19 );
function rcl_add_product_custom_meta( $content ) {
global $post;
if ( $post->post_type != 'products' || doing_filter( 'get_the_excerpt' ) )
return $content;
$custom_meta = get_post_meta($post->ID, 'meta_key', true);
return $custom_meta . $content;
}
Не знаю точно про приоритет фильтра, если будет не в том месте выводиться - уменьшайте 19
Вы не имеете права на публикацию сообщений в этой теме