remove older posts link

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?

Related posts

Leave a Reply

1 comment