我將帖子內容保存到帖子元,我想檢索它而不是原來的帖子內容,以便當我調用the_content()時後meta中的數據不會顯示實際的發佈數據。在wordpress中掛鉤the_content過濾
function test(){
$post_meta = post meta data here ....
echo apply_filters('the_content', '$post_meta');
}
add_filter('the_content', 'test');
我得到這個錯誤
Fatal error: Maximum function nesting level of '100' reached
誤差有一定道理,但我怎麼能做到什麼,我試圖做的,任何想法?
將'echo'更改爲'return'。然後會發生什麼? – maiorano84
什麼都沒有,還是一樣的錯誤。 –
然後更改'echo apply_filters('the_content','$ post_meta');' '返回$ post_meta;'。 – maiorano84