如何将自定义字段作为按钮快捷代码的链接?

时间:2013-11-16 作者:Alex

我一直在研究一个自定义页面模板,似乎不知道如何将URL的自定义字段作为循环中按钮的链接。

这是我的密码

<?php echo do_shortcode("[standout-css3-button href=\'<?php
get_post_meta($post->ID, \'church-website-url\', true); ?>\']Church
website[/standout-css3-button]"); ?>
有人知道如何让这个想法起作用吗?

提前谢谢。

1 个回复
SO网友:Krzysiek Dróżdż

我认为问题不在于shortcode,而在于您的代码——您不能嵌套块;)

我想这应该很好用:

<?php echo do_shortcode("[standout-css3-button href=\'". get_post_meta($post->ID, \'church-website-url\', true) ."\']Church website[/standout-css3-button]"); ?>

结束

相关推荐

How to call uninstall.php?

我是WordPress的新手。。。我已经创建了我的插件。。。现在我正在创建卸载。用于卸载我的插件的php文件。。。这是我的卸载代码。phpif(!defined(\'WP_UNINSTALL_PLUGIN\')) exit (); //here I am dropping my table and options... 我不知道如何调用卸载。php?从哪里打电话?从那里我可以卸载我的插件。。。我知道register\\u uninstall\\u hook(),但