我使用以下代码删除中的旧帖子和新帖子链接functions.php
但它仍然显示了它们。
function remove_post_navigation() {
remove_action(\'thematic_navigation_below\', \'thematic_nav_below\', 2);
remove_action(\'thematic_navigation_above\', \'thematic_nav_above\', 2);
}
add_action(\'init\', \'remove_post_navigation\');
如何删除它们?