Text is dropped after the first word in WordPress? -
i have created custom themes wordpress. when passed value input text box wordpress removing texts, words after first word!??
here code:
$text_message = "check out our cool products." for above text message prints "check"!! rest words "out our cool products." not displayed in input textbox??
html code here:
<a style="float: right; margin-top:52px; margin-right:-230px; width: 32px;height: 32px; background-image: url(../wp-content/images/twiiter_logo.png)" href=<?=$text_message;?> class="login" title=""></a> have guys experienced same? how can fixed?
thanks help.
variable not echoed properly. believe value text in link, not href. in href, display proper url.
try this:
<a style="float: right; margin-top:52px; margin-right:-230px; width: 32px;height: 32px; background-image: url(../wp-content/images/twiiter_logo.png)" href="#" class="login" title=""> <?php echo $text_message; ?> </a>
Comments
Post a Comment