gpt4 book ai didi

html - 如何基于 acf 设置简码样式

转载 作者:太空宇宙 更新时间:2023-11-04 06:01:06 25 4
gpt4 key购买 nike

我想将我页面中 acf 字段的输出与我的短代码结合起来。文本应使用通过 acf 字段设置的颜色加下划线。

我尝试调用字段颜色并通过内联样式设置文本装饰。但这是行不通的。知道我做错了什么吗?

function quote_func($atts, $content = null){
$color = get_field('color');
$output = '<div>';
$output .= '<span style="text-decoration-color:' . echo the_field('color'); . '">' . $content . '</span>';
$output .= '</div>';

return $output;
}
add_shortcode( 'quote', 'quote_func' );

最佳答案

您应该回显您在函数开头设置的变量。

function quote_func($atts, $content = null){
$color = get_field('color');
$output = '<div>';
$output .= '<span style="text-decoration-color:' . $color . '">' . $content . '</span>';
$output .= '</div>';

return $output;
}
add_shortcode( 'quote', 'quote_func' );

关于html - 如何基于 acf 设置简码样式,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57290380/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com