Move Next/Previous Links To The Top Of Posts
function my_move_next_prev() { // Remove them from the bottom remove_action( 'wpex_hook_main_bottom', 'wpex_next_prev' ); // Add them to the top add_action( 'wpex_hook_main_top', 'wpex_next_prev' ); } add_action( 'init', 'my_move_next_prev' );