为当前帖子作者元创建短代码
我有一个名为 phone 的帖子作者自定义元字段,我正在尝试创建一个短代码来显示作者帖子上的电话号码。我有以下内容,但它不起作用。
/*Author Phone Meta*/
function author_phone_sc() {
return get_the_author_meta( 'phone', FALSE );
}
add_shortcode("author_phone", "author_phone_sc");
I have a custom meta field for post author named phone am trying to create a shortcode to display the phone number on the author's post. I have the following, but it's not working.
/*Author Phone Meta*/
function author_phone_sc() {
return get_the_author_meta( 'phone', FALSE );
}
add_shortcode("author_phone", "author_phone_sc");
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以尝试如下操作:
You can try something like the below: