Возможно, с помощью хука
the_content.
add_filter('the_content', 'dco_the_content');
function dco_the_content( $content ){
if (get_post_meta(get_the_ID(), 'ver', true)) {
$content .= '<p>Версия: ' . get_post_meta(get_the_ID(), 'ver', true) . '</p>';
}
return $content;
}
Второй вариант:
add_filter('the_content', 'dco_the_content');
function dco_the_content( $content ){
global $post;
if (get_post_meta($post->ID, 'ver', true)) {
$content .= '<p>Версия: ' . get_post_meta($post->ID, 'ver', true) . '</p>';
}
return $content;
}
Третий вариант:
add_filter('the_content', 'dco_the_content');
function dco_the_content( $content ){
global $post;
if (get_field( "ver", $post->ID )) {
$content .= '<p>Версия: ' . get_field( "ver", $post->ID ) . '</p>';
}
return $content;
}