function test_code() {
return 'Тест кода';
}
add_shortcode('test_1', 'test_code');
global $shortcode_tags;
echo "<pre>";
print_r($shortcode_tags);
echo "</pre>";
<?php echo do_shortcode("[test_1]"); ?>
// для текста материала
echo apply_filters('the_content',$post->post_content);
// для дополнительных полей
echo apply_filters('the_content',get_field('role'));