This is in my theme-function.php
. I’m printing this to the index.php
. I am trying to make it dynamic,(changing it on my backend) but if I paste the 2nd code below the browser displays Server error 500.
1st code original code:
<p class="welcome-block-text">Juan Aquino<br>
2nd code: how to make like this
echo '<div class="row">
if(get_option($shortname.'_custom_text_url','') != "") {
<p class="welcome-block-text">echo get_option($shortname.'_custom_text_url',''); <br>
} else {
<p class="welcome-block-text">Juan Aquiano<br>
}
Here is the Code Below refer it
Don’t forget to close
<p>
and<div>
More simplified way to achieve this :