Thanks for your help.
Here is what is in my functions.php file. Do you see anything that would interfere?
<?php #thumbnails support add_theme_support( ‘post-thumbnails’ );set_post_thumbnail_size( 100, 100 );
#Function to use post tags as meta keywords function csv_tags() { $posttags = get_the_tags(); foreach((array)$posttags as $tag) { $csv_tags .= $tag->name . ‘,’; } echo ‘<meta name="keywords" content="’.$csv_tags.’" />’; } #Function to create excerpts for pages instead of just posts add_action( ‘admin_menu’, ‘mf_add_page_excerpt_box’ ); function mf_add_page_excerpt_box() { add_meta_box( ‘mf_page_excerpt’, __( ‘Excerpt’ ), ‘postexcerpt’, ‘page’, ‘normal’, ‘high’ ); } function postexcerpt() { global $post; $message = __( ‘Excerpts are optional hand-crafted summaries of your content. You can <a href="http://codex.wordpress.org/Template_Tags/the_excerpt" target="_blank">use them in your template</a>’ ); print <<<EOF <div class="inside"> <textarea rows="1" cols="40" name="excerpt" tabindex="3" id="excerpt">{$post->post_excerpt}</textarea> <p>{$message}</p> </div> EOF; } function hide_wp_vers() { return ”; } add_filter(‘the_generator’,’hide_wp_vers’); if ( function_exists(‘register_sidebars’) ) register_sidebars(2); ?> <?php //Begin Theme Options Code $themename = "Revolution Code Blue"; $shortname = "cb"; $options = array ( array( "name" => "Color Scheme", "id" => $shortname."_color_scheme", "std" => "Default", "type" => "select", "options" => array("Blue","Gray","Red")) ); function mytheme_add_admin() { global $themename, $shortname, $options; if ( $_GET[‘page’] == basename(__FILE__) ) { if ( ‘save’ == $_REQUEST[‘action’] ) { foreach ($options as $value) { update_option( $value[‘id’], $_REQUEST[ $value[‘id’] ] ); } foreach ($options as $value) { if( isset( $_REQUEST[ $value[‘id’] ] ) ) { update_option( $value[‘id’], $_REQUEST[ $value[‘id’] ] ); } else { delete_option( $value[‘id’] ); } } header("Location: themes.php?page=functions.php&saved=true"); die; } else if( ‘reset’ == $_REQUEST[‘action’] ) { foreach ($options as $value) { delete_option( $value[‘id’] ); } header("Location: themes.php?page=functions.php&reset=true"); die; } } add_theme_page($themename." Options", "Select Theme Color", ‘edit_themes’, basename(__FILE__), ‘mytheme_admin’); }
function mytheme_admin() { global $themename, $shortname, $options; if ( $_REQUEST[‘saved’] ) echo ‘<div id="message" class="updated fade"><p><strong>’.$themename.’ settings saved.</strong></p></div>’; if ( $_REQUEST[‘reset’] ) echo ‘<div id="message" class="updated fade"><p><strong>’.$themename.’ settings reset.</strong></p></div>’; ?>
<div class="wrap"> <h2><?php echo $themename; ?> settings</problem-with-post-edit-button2> <p>Select the color scheme that you would like to use on your website:</p? <form method="post"> <table class="optiontable"> <?php foreach ($options as $value) { if ($value[‘type’] == "text") { //If we have configured this for text options … ?> <tr valign="top"> <th scope="row"><?php echo $value[‘name’]; ?>:</th> <td> <input name="<?php echo $value[‘id’]; ?>" id="<?php echo $value[‘id’]; ?>" type="<?php echo $value[‘type’]; ?>" value="<?php if ( get_settings( $value[‘id’] ) != "") { echo get_settings( $value[‘id’] ); } else { echo $value[‘std’]; } ?>" /> </td> </tr> <?php } elseif ($value[‘type’] == "select") { //If we have configured this for select box options … ?> <tr valign="top"> <th scope="row"><?php echo $value[‘name’]; ?>:</th> <td> <select name="<?php echo $value[‘id’]; ?>" id="<?php echo $value[‘id’]; ?>"> <?php foreach ($value[‘options’] as $option) { ?> <option<?php if ( get_settings( $value[‘id’] ) == $option) { echo ‘ selected="selected"’; } elseif ($option == $value[‘std’]) { echo ‘ selected="selected"’; } ?>><?php echo $option; ?></option> <?php } ?> </select> </td> </tr> <?php } } ?>
</table>
<p class="submit">
<input name="save" type="submit" value="Save changes" />
<input type="hidden" name="action" value="save" />
</p>
</form>
<form method="post">
<p class="submit">
<input name="reset" type="submit" value="Reset" />
<input type="hidden" name="action" value="reset" />
</p>
</form>
<?php
}
add_action(‘admin_menu’, ‘mytheme_add_admin’);
?>
And here is the content of db post_content:
<strong>Join the discussion.</strong> Post questions or offer useful information. Keep the content related to plastic in some way. <a href="http://www.feedblitz.com/f/?Sub=777316" target="_blank">Click here</a> to sign up to be notified whenever new messages are posted.
<strong>To add a new topic:</strong> Decide which category it will be (plastic-free alternatives, plastic news, rants, etc.) and click on that category. Then, you will see the "Add Topic" button at the top right of the section for that category.
<strong>Why Register?</strong> You may post as a guest without registering, but your post will be held in the moderation queue until I approve it, and depending on my schedule, that could take a while. If you register, your posts will go through immediately. If you have trouble registering or adding topics, please <a href="/contact-me/">contact me</a> for help.