在ACF字段中添加域路径作为短码

时间:2022-03-02 作者:Bill

我使用ACF textarea字段加载一些js和css文件
我想做的是为文件的域路径设置一个快捷码。像这样的enter image description here

这是我的shortcode函数

function my_path_shortcode() { 
    $domain_path = get_template_directory_uri(); 
    return $domain_path;
} 
add_shortcode(\'shortcode_domain_path\', \'my_path_shortcode\'); 
问题是我得到的[shortcode\\u domain\\u path]是plain text 因为我使用textarea字段。有什么方法可以做到这一点并找到路径吗?

谢谢你的帮助!

1 个回复
SO网友:amiad

您可以使用this code, 但你不需要它。

如果未将域添加到url,则浏览器使用相同的域。/wp-content/themes/my-theme/ 等于https://your-domain.com/wp-content/themes/my-theme/

相关推荐

SHORTCODE_ATTS()中的$ATTS参数是什么?

这个WordPress developers reference page for shortcode_atts() 国家:$atts(array)(必选)用户在shortcode标记中定义的属性。但我不理解这个定义。例如,在WP Frontend Profile 插件:$atts = shortcode_atts( [ \'role\' => \'\', ], $atts ); 据我所知,shortcode\