Quantcast
Channel: if else in a Wordpress function - Stack Overflow
Viewing all articles
Browse latest Browse all 3

Answer by Haddock-san for if else in a Wordpress function

$
0
0

Remove the endif; on the bottom line.

If you want to use the endif; you have to use the following syntax:

<?php if ( condition ) : ?>    { html goes here }<?php elseif ( condition ): ?>    { html goes here }<?php else : ?>    { html goes here }<?php endif; ?>

Viewing all articles
Browse latest Browse all 3

Trending Articles