不能直接向PHP添加短代码。然而,每个短代码都执行一个函数,所以您可以将该函数添加到链接代码中。
如果您的短代码是这样的:
function my_custom_shortcode( $atts, $content= NULL) {
shortcode function
}
add_shortcode ( \'my_custom_shortcode\' , \'my_custom_shortcode\' );
在链接中使用此选项:
<a href="<?php my_custom_shortcode(); ?>" class="btn" > CLICK TO OPEN SHORTCODE</a>