【发布时间】:2013-09-13 04:50:13
【问题描述】:
不确定是什么,但短代码中的属性没有被传递给处理函数。
Wordpress 帖子中的短代码
[k_recipe recipe="snack"]Here is some content[/k_recipe]
简码函数
add_shortcode("k_recipe", "recipe_shortcode");
function recipe_shortcode($attributes, $content){
return "Hi " . $attributes["recipe"] . " Hi " . $content;
}
短代码输出
Hi Hi Here is some content
为什么没有传递零食值?有什么线索吗??
【问题讨论】:
-
所以我重新启动了我的电脑,它现在似乎可以工作了。 叹息
标签: php wordpress api plugins shortcode