Additional CSS for the nav menu
Using the menu id for each menu item I could customise each menu heading as I needed.
Using the menu id for each menu item I could customise each menu heading as I needed.
Pagination doesn’t work in query post in tag template
How to apply individual menu item’s “CSS Classes” to , not ?
Where to place a svg chevron down in my custom walker?
Right after the endwhile line, try adding… <?php the_posts_pagination(); ?> more info on the_posts_pagination()
Show all menu levels except top level. How to exclude top level of a menu?
I think there’s couple of ways doing this. 1) register_nav_menu, add your menu in Appearance > Menus to the registered menu location, then let wp_nav_menu handle the markup for you 2) register_nav_menu, add menu in Appearance > Menus, then use wp_get_nav_menu_items to get the menu items and write the html markup yourself. 3) Have an … Read more
get_next_post() not working with future post status
You will pass the $wpex_query object into wpex_pagination function. Currently $wp_query object is not getting your custom query details. Here is the updated for wpex_pagination function. if ( !function_exists( ‘wpex_pagination’ ) ) { function wpex_pagination( $new_query ) { $prev_arrow = is_rtl() ? ‘→’ : ‘←’; $next_arrow = is_rtl() ? ‘←’ : ‘→’; global $wp_query; $temp_query … Read more
Show Custom field value instead of title in WP Menu