I use these following codes to delete older posts and newer posts links in functions.php
but it still shows them.
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');
How to remove them?
Are you adding this in a child theme’s functions.php file? From what I read, you can use these empty functions to accomplish what you want.
http://themeshaper.com/forums/topic/how-to-remove-nav-from-single-post#post-17191