如何在打开和关闭短代码中安装函数。
我有一个显示帖子pdf附件url的函数
$file= get_post_meta( $post->ID, \'teacher-resume-upload\' );
if ( $file) { foreach ( $file as $attachment_id ) { $full_size = wp_get_attachment_url( $attachment_id );
printf( \'%s\', $full_size); } }
我将如何将上述代码放入此。。。
echo do_shortcode( \'[pdf]\' . $text_to_be_wrapped_in_shortcode . \'[/pdf]\' );