Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个简短的代码[wtilikepost],当添加到帖子中时会显示一个喜欢不喜欢的按钮。但是我想将短代码直接添加到我认为可以的 PHP 模板中
[wtilikepost]
<?php echo do_shortcode( '[wtilikepost]' ); ?>
所做的只是输出字符串“wtilikepost”
我是否需要在我的 functions.php 文件中添加其他内容?
尝试这个:
<?php if( shortcode_exists( 'wtilikepost' ) ) do_shortcode( '[wtilikepost]' ); else echo "The shortcode <b>wtilikepost</b> is not installed."; ?>
这样您就可以知道它是否被识别或安装。