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;"> <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>
