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.
  1. //retrieve author page url (ex. http://www.abc.com/?author=123) by using shortcode [XXXXX id=123]
  2. function XXXXX_func($atts) {
  3. extract(shortcode_atts(array(
  4. "id" => '1'
  5. ), $atts));
  6. return get_author_posts_url($id);;
  7. }
  8. //add shortcode [XXXXX id=123]
  9. add_shortcode('XXXXX', 'XXXXX_func');

以上是关于WP Shortcode-检索作者页url的主要内容,如果未能解决你的问题,请参考以下文章

将WP Shortcode添加到模板

php WP Shortcode加载远程内容

在 WP Shortcode 中显示来自 mySQL 的数据字段

php WP-得到的作者,帖子的URL

text 菜单块url路径url shortcode urls模板链接模板url

织梦cms列表页/内容页调用当前文档作者的会员头像的方法