返回帖子特定内容的快捷代码

时间:2012-09-02 作者:Peter

我目前正在构建一个插件,在接受验证码后显示帖子的特定部分。短代码能否返回帖子的一部分?我的意思是:

Bla Bla Bla[短代码postID=“100”]特殊Bla Bla[/shortcode]Bla Bla Bla

如何编写一个函数,仅在插件调用此快捷码时检索帖子的特定内容?

1 个回复
SO网友:redochka

为什么不使用类似以下内容:

Bla bla bla [shortcode postID="100" content="Special bla bla"] Bla bla
然后在shortcode函数中检索内容。

extract( shortcode_atts( array(
   \'content\' => \'\',
), $attr ) );

echo \'special content is: \'.$content;

结束

相关推荐

List author's posts with SQL

我想用下面的代码显示作者的帖子,但不显示作者的姓名。怎么了?<? // query test $qry = $wpdb->get_results( $wpdb->prepare(\" SELECT * FROM $wpdb->posts WHERE post_type =\'post\' AND post_status=\'publish\' order by \'ID\' DESC LIMIT 5 \"));