What I am trying to do is change the admin template drop down to a radio button with the name of the template and a icon of what the template will look like. The problem is that is that when I select a template is does not save as that template.
Here is what I have so far.
<label class="screen-reader-text" for="page_template"><?php _e('Page Template') ?></label>
<!--<select name="page_template" id="page_template">
<option value='default'><?php _e('Default Template'); ?></option>
<?php page_template_dropdown($template); ?>
</select>-->
<form name="page_template" id="page_template">
<span style="display:block; height:35px; clear:both;">
<input type="radio" value='default'>
<img style="top:6px;position:relative;padding-right:5px;" src="<?php bloginfo('template_url'); ?>/page-icons/gallery-icon.jpg" /><?php _e('Default Template'); ?>
</span>
<span style="display:block; height:35px; clear:both;">
<input type="radio" value='gallery'>
<img style="top:6px;position:relative;padding-right:5px;" src="<?php bloginfo('template_url'); ?>/page-icons/gallery-icon.jpg" /><?php _e('Main Gallery'); ?>
</span>
</form>
I am editing the meta-box.php in the wp-admin > includes folder. Any Help would be great.