0
與我的插件我想在主題上顯示圖像。最高的可能性是一些標籤用post_class函數顯示的地方。我的問題是,如果可能在執行該函數後立即掛鉤?Wordpress插件開發/函數執行後掛鉤?
與我的插件我想在主題上顯示圖像。最高的可能性是一些標籤用post_class函數顯示的地方。我的問題是,如果可能在執行該函數後立即掛鉤?Wordpress插件開發/函數執行後掛鉤?
,你可以看到post_class功能的含量回聲
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 ) ) . '"';
}
你可以看到如何在回波使用post_class()如下面的例子:
echo '<div ' . post_class() . '>';
您可以創建另一個過濾器函數並在內容中調用post_class。 祝你好運!