Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I need to add "selected" to the option that is selected but I cant get it to work inside of a function. I try adding <?php selected( $tycolorbgbgselect, reds.png );?> after option value but its just not working. This is for a wordpress theme options page. Here is the part of the code

function colorbgsettings() { 
$colorbg = '<div id="colorbg-settings"> 
<div class="wrap"> 
<form method="post" name="colorbgform" action=""> 
' . settings_fields( 'ty-option-group' ) . ' 
<h2 class="bgcolorh2">Background & Color Settings</h2><br/> 
<div id="colorbgbgselect"; style="margin-left:10px;">&nbsp;<strong>Background:</strong>      <br/> 
<select name="ty-colorbg-bgselect" id="ty-bgselect"> 
<option value="blueg.gif">Blue Gradient(#005ABB)</option> 
<option value="blues.png">Blue Stripe(#005ABB)</option> 
<option value="redg.png">Red Gradient(#D90005)</option> 
<option value="reds.png">Red Stripe(#D90005)</option> 
</select>
share|improve this question
variable scope issue: php.net/manual/en/language.variables.scope.php – Dagon Aug 3 '12 at 4:16

1 Answer

I think you have the following issue

wrap reds.png in double quotes

Note: you should keep your errors ON on the page to see if there is any errors on the page

share|improve this answer
This whole section is wrapped in <?php ?>. Is it possible to put <?php ?> inside of <?php ?>. – user1573076 Aug 3 '12 at 4:28
No. you dont need that then – Rab Nawaz Aug 3 '12 at 5:21
That's what I figured. I am fairly new to php but from what I have gathered I would replace the <?php with a period or a by wrapping it in single quotes but even after a lot of trial and error I can't get this working. (ex. ' .if(get_option('ty-colorbg-bgselect') == 'blueg.gif' echo "selected" .') I've tried a lot of similar variations of this and I just can't get it to work. – user1573076 Aug 3 '12 at 5:33

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.