Get post id shortcode

时间:2016-12-11 作者:James

我是新手。

我需要一个短代码,返回插入短代码的帖子的帖子id。

如果有人能提供,这将为我打开理解之门:)

非常感谢!

2 个回复
最合适的回答,由SO网友:CodeMascot 整理而成

将以下代码放置到主题中functions.php 或者在插件和[return_post_id] shortcode将打印帖子ID。

add_shortcode( \'return_post_id\', \'the_dramatist_return_post_id\' );

function the_dramatist_return_post_id() {
    return get_the_ID();
}
希望这有帮助。

SO网友:Antonio Marcos

短代码:可嵌入的帖子摘录

安装短代码后(按照下面的步骤1+2),您可以在WordPress接受短代码的任何地方执行它。要连接到帖子,只需输入要显示的帖子ID:

https://marketersdelight.net/snippets/embeddable-excerpts/

相关推荐

SHORTCODE_ATTS()中的$ATTS参数是什么?

这个WordPress developers reference page for shortcode_atts() 国家:$atts(array)(必选)用户在shortcode标记中定义的属性。但我不理解这个定义。例如,在WP Frontend Profile 插件:$atts = shortcode_atts( [ \'role\' => \'\', ], $atts ); 据我所知,shortcode\