如何在我的wordpress主题中添加enfold主题短代码

时间:2017-03-07 19:06:35

标签: php html wordpress wordpress-theming

我正在为目前正在使用endfold的网站开发一个新主题 现在,我对之前使用过enfold短代码的帖子有疑问,而且我的主题不支持他们如何在我的主题中添加enfold的短代码

1 个答案:

答案 0 :(得分:1)

Wordpress中的短代码定义如下:

    //[foobar]
function foobar_func( $atts ){
    return "foo and bar";
}
add_shortcode( 'foobar', 'foobar_func' );

https://codex.wordpress.org/Shortcode_API

您必须在endfold主题文件中找到已定义的快捷方式(只需使用grep作为短代码别名),然后在主题上重新实现此代码。