php新手在这里试图自定义wordpress
我需要将" Royalslider插件"滑块放入我的页面模板中。 我想使用ACF(高级自定义字段)输入要调用的幻灯片编号。 你能告诉我为什么会发生以下情况吗?
<?php
$num = get_field(royalslider_slideshow);
print $num; //prints "3"
$jm = "get_new_royalslider(".$num.")";
print $jm; //one of these prints "get_new_royalslider(3)"
echo $jm; //one of these prints "get_new_royalslider(3)" why won't it call the slider!?!?
echo get_new_royalslider(3); //Just to confirm, this command does call the slider
?>
我确信答案很简单,先谢谢你们!