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的主要内容,如果未能解决你的问题,请参考以下文章