add_shortcode( 'name', 'func' );
function func( $atts ){
$params = shortcode_atts( array(
'param1' => null,
'param2' => null
), $atts );
return 1;
}
// передаем параметры
[name param1=1 param2=2]
<?php
if( !empty(get_field('name_field')) ) :
the_field('name_field');
endif;
?>