Thanks for the replies everyone. I kind of understand what you are all getting at, but I don’t really know what the code means. Would it be too much trouble to look at my sidebar code and put that code where it needs to be? Maybe that will help it sink in for me.
<div class=”rightimage”></div>
<div class=”right”>
<form method=”get” id=”searchform” action=”<?php echo $_SERVER[‘../wp/flowers/simplicity/PHP_SELF’]; ?>”>
<input type=”text” value=”<?php echo wp_specialchars($s, 1); ?>” name=”s” id=”s” size=”23″ />
<input type=”submit” id=”searchsubmit” value=”search” />
</form>
<div class=”sideheading”>about</div>
<p style=”padding-left: 10px; padding-right: 10px;”><?php bloginfo(‘description’); ?>
<?php if (function_exists(‘wp_theme_switcher’)) { ?>
<div class=”sideheading”>themes</div>
<?php wp_theme_switcher(); ?>
<?php } ?>
<div class=”sideheading”>pages</div>
<?php wp_list_pages(‘title_li= ‘); ?>
<div class=”sideheading”>categories</div>
<div class=”sideheading”>archive</div>
<?php wp_get_archives(‘type=monthly’); ?>
<?php
$link_cats = $wpdb->get_results(“SELECT cat_id, cat_name FROM $wpdb->linkcategories”);
foreach ($link_cats as $link_cat) {
?>
<div id=”linkcat-<?php echo $link_cat->cat_id; ?>” class=”sideheading”><?php echo $link_cat->cat_name; ?></div>
<?php wp_get_links($link_cat->cat_id); ?>
<?php } ?>
<div class=”sideheading”>et cetera</div>
</div>
My site is https://www.davidryanapaul.com And remember I just want to reorder the sidebar headings. Preferbly to have ‘artwork’ and ‘links’ above ‘pages’. Sorry for all the bother. It’s just really frustrating for an artist trying to understand code. I’m trying to get better though.