不,WordPress不会将任何参数传递给钩子的回调。你可以用这个钩子在embed excerpt 显示。但如果主题使用默认的嵌入模板进行后期嵌入,则这是当然的;使用自定义模板,如果需要,可以显示整个帖子内容。
而嵌入摘录实际上是automatic or manual excerpt 嵌入帖子的内容—请参见下面的示例。
Code Sample
// No arguments passed to this callback.
function my_callback() {
// Here, you can use the_xx functions like the_ID().
echo \'<p><b>This is the additional content.</b></p>\';
}
add_action( \'embed_content\', \'my_callback\' );
Preview 1: Embedding a post having an auto-generated excerpt
Preview 2: Embedding a post having a defined/manual excerpt
因此,在这两个预览中,“这是附加内容。”已通过添加
embed_content
钩