WP Shortcode-检索作者页url
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了WP Shortcode-检索作者页url相关的知识,希望对你有一定的参考价值。
Using shortcode to retrieve the author page url (ex. abc.com/?author=123), using the WP Shortcode API as reference.
//retrieve author page url (ex. http://www.abc.com/?author=123) by using shortcode [XXXXX id=123] function XXXXX_func($atts) { "id" => '1' ), $atts)); return get_author_posts_url($id);; } //add shortcode [XXXXX id=123] add_shortcode('XXXXX', 'XXXXX_func');
以上是关于WP Shortcode-检索作者页url的主要内容,如果未能解决你的问题,请参考以下文章
在 WP Shortcode 中显示来自 mySQL 的数据字段