如何在我的主题中使用此代码使用短代码

how to use this code in my theme use short code

echo do_shortcode( '[karma_by_kadar__simple_player title="' . get_the_title() . '" src="' . the_field( 'download-link' ) . '"  autoplay="false" loop="true" color="1"]' );

我想将此代码作为短代码添加到我的网站并获取其名称的数量并从 acf 插件

下载link

目前没有下载link

Result

使用 the_field() 不会 return 字段值。它基本上会回显 returned 值,这在 php echo

内部使用时不起作用

您需要改用 get_field(),这将 return 值而不是尝试重新回显它。

Returns 值... get_field()

显示值(本质上是回显)...the_field()