__( 'Previous page', 'beauty-salon-spa' ), 'next_text' => __( 'Next page', 'beauty-salon-spa' ), 'before_page_number' => '' . __( 'Page', 'beauty-salon-spa' ) . ' ', ) ); } else if($beauty_salon_spa_pagination_type == 'numbered'){ the_posts_pagination( array( 'prev_text' => __( 'Previous page', 'beauty-salon-spa' ), 'next_text' => __( 'Next page', 'beauty-salon-spa' ), 'before_page_number' => '' . __( 'Page', 'beauty-salon-spa' ) . ' ', ) ); } } add_action( 'beauty_salon_spa_blog_pagination', 'beauty_salon_spa_render_blog_pagination', 10 ); /** * Pagination for single post. */ function beauty_salon_spa_render_single_post_pagination() { $beauty_salon_spa_single_post_pagination_type = get_theme_mod( 'beauty_salon_spa_single_post_pagination_type', 'default' ); if ($beauty_salon_spa_single_post_pagination_type == 'default') { the_post_navigation( array( 'prev_text' => '' . __( 'Previous Post', 'beauty-salon-spa' ) . '', 'next_text' => '' . __( 'Next Post', 'beauty-salon-spa' ) . ' ', ) ); } else if($beauty_salon_spa_single_post_pagination_type == 'post-name'){ the_post_navigation( array( 'prev_text' => '' . __( 'Previous Post', 'beauty-salon-spa' ) . '%title', 'next_text' => '' . __( 'Next Post', 'beauty-salon-spa' ) . '%title', ) ); } } add_action( 'beauty_salon_spa_single_post_pagination', 'beauty_salon_spa_render_single_post_pagination', 10 );