Skip to content
Advertisement

WordPress IF ELSEIF and ELSE Statement

Can someone explain why this does not work?

JavaScript

Basically if not the home page or a page with ID 105 show the contact form, else if it is the home page show ‘no side bar’ else for everything else show ‘different side bar’ – it doesnt work as the home page still shows the ‘different side bar’ (and doesnt show the contact form either – which is correct)

Advertisement

Answer

Try below. Note elseif ( is_home() || is_front_page() ) : :-

JavaScript
User contributions licensed under: CC BY-SA
2 People found this is helpful
Advertisement