Navigation links to posts in current term shortcode

Have you tried to echo get_previous_post_link as this is what is called when you set function previous_post_link. function fivehats_previous_post() { // You need to echo it out for it to display in the page echo get_previous_post_link( ‘%link’, ‘%title’, TRUE, ‘ ‘, ‘property-category’ ); } add_shortcode( ‘fh_prev’, ‘fivehats_previous_post’ );

Display Username as parent menu item

Works fine for me, nothing is replaced, it’s just appended to the navigation. Are you sure that it’s not just a styling-issue? Have you looked at the document source to check if it really is replacing the other menu items? What exactly do you mean by making it the parent item? Do you want to … Read more

Unable to edit Navigation bar

The first step is to make the “Shopping Nav” Active. It’s currently set to “display:none” in the css, probably because the menu isn’t active. Once you change display:none on that menu, then you can start positioning it to be split from the other menu at the top of the screen. This is what needs to … Read more