Wordpress插件开发/挂钩功能执行后?

时间:2016-05-05 10:02:55

标签: wordpress plugins

使用我的插件我想在主题上显示图像。最高的可能性是使用post_class函数显示某些标签的位置。我的问题是,在函数执行后是否可以挂钩?

1 个答案:

答案 0 :(得分:0)

你可以看到post_class函数的内容是echo

function post_class( $class = '', $post_id = null ) {
     // Separates classes with a single space, collates classes for post DIV
     echo 'class="' . join( ' ', get_post_class( $class, $post_id ) ) . '"';
}

您可以在下面的示例中看到如何在echo中使用post_class():

echo '<div ' . post_class() . '>'; 

您可以创建另一个过滤器函数并在内容中调用post_class。 祝你好运!