我的函数只影响页面内容,而不影响页面插件中帖子的页面内容,我在页面中使用一个短代码调用该插件。
My plugin function
add_filter(\'the_content\', \'modify_tables\', 10, 1);
function modify_tables($content) {
//modifications...
return $content;
} // function modify_tables
My template code to ouput page
while (have_posts()) : the_post();
the_content();
endwhile;