对于像插入缩略图这样的特定内容,我将声明一个新的挂钩。
/**
* Register hook: thumbnail
*
* In the post, if no thumbnail exists
* use a default instead
*/
function thumbnail_hook() {
do_action(\'thumbnail_hook\');
}
然后在主题中,添加挂钩:
<?php thumbnail_hook(); ?>
最后,您的操作将连接到该新空间:
add_action( \'thumbnail_hook\', \'mythumb\' );
此解决方案允许您将缩略图放置在主题页面上下文中的任何位置,同时更接近MVC方法。在您的情况下,您需要添加更多的条件逻辑。