How to add more than one menu for logged in members?

I suggest you use the theme_location options in WordPress. Assuming you have multiple locations for navigation menus what you could do is assign the two different menus to two different locations. Then adjust your theme templates to display the menu based on logged-in status rather than trying to add two menus to the same location. … Read more

Wanted to get rid of Paragrapgh tag in submit buttom of the WordPress form

If you control the theme the simplest way to fix this is passing the submit_field argument into comment_form(): comment_form( array( ‘submit_field’ => ‘%1$s %2$s’, ) ); Default: <p class=”form-submit”>%1$s %2$s</p>, where %1$s is the submit button markup and %2$s is the comment hidden fields. which removes the <p> altogether. However it might be useful to … Read more

Swap WordPress “Widget Area” based on Page Template

WOW! well, it would seems as tho i figured it out! after MORE searching, i came across https://learn.wordpress.org/lesson-plan/widget-areas apparently i had to “register” a “sidebar” – which thru me, as i was wanting to modify in the footer. after looking that up, the term “sidebar” is used anywhere the theme allows the user to add … Read more