Add a Numeric Pagination with Accessibility in the Beaver Builder Theme

The default WordPress post pagination used in Beaver Builder Theme uses wp_pagenavi() and gives output as below. You can swap this single post navigation for a numeric display using the navigation function the_posts_pagination(), this also has the added benefit…
Add Custom Post Type Navigation Links in Genesis Themes

You can add post navigation links to custom post types in Genesis WordPress themes by using an existing function and just extending it. That function is genesis_prev_next_post_nav and is found in genesis/lib/structure/post.php The function just refers to posts in the code but you can extend…
Add Single Post Navigation Links in Genesis

Genesis has a function which is not active (in most themes) that allows post navigation from older to later posts when viewing in single posts view. That function is genesis_prev_next_post_nav and is found in genesis/lib/structure/post.php So to add the navigation below the post, add…