像你正在做的事情应该是可行的,但我认为你有一些地方出了问题。
首先,听起来你已经破解了这个插件。不要这样做,只需从the_content
钩
在您的主题中functions.php
添加:
remove_filter(\'the_content\', \'append_the_video\');
The
youtube_video()
作用
depends on the $post
variable. 这意味着它本质上是一个“仅循环”函数。如果您正试图这样做,则无法将其移出循环。它不能正常工作。
您可以在其他位置运行它,方法是将自己的回调添加到the_content
.
function my_prepend_the_video($content){
return youtube_video().$content;
}
add_filter(\'the_content\', \'my_prepend_the_video\');
当然,如果需要,您可以添加其他标记。