I trialled the Coffeecup theme, so here’s my 2 cents worth.
1) change nav links
A) Open header.php (if you have it re-writable) and insert your links there. You’ll find them under
<div id=”hnav”>
<div id=”hmenu”>
<ul id=”top”>
—————–[here they are]———————–
</div>
</div>
</div>
I inserted this peice of code for my home link:
="<?php echo get_settings('home'); ?>" title="home">
between the href = ‘ ‘ tags and that brought up my home page when I click “home”.
As for the other links, I’m waiting on a reply from support as to how to bring up individual categtories because I use the horizontal aspect as my main primary navigation. So at present I can’t help you there.
2) changing order of sidebar.
A) Again, if you have your theme re-writable, open sidebar.php. This is what you’ll find:
<div id="sidebar">
<!--
- <h2>About</h2>
You can put a small amount of info about you here.
Name, contact details etc.
-->
- <h2><?php _e('Categories'); ?></h2>
<?php wp_list_cats('sort_column=name&optioncount=0&exclude=3,4,5,6,7'); ?>
- <h2><?php _e('Monthly Archives:'); ?></h2>
<?php wp_get_archives('type=monthly'); ?>
<?php /* If this is the frontpage */ if (is_home()) { ?>
- <h2><?php _e('Links'); ?></h2>
<?php get_links('-1', '
- ', '
', '
'); ?>
<?php if (function_exists('wp_theme_switcher')) { ?>
- <h2><?php _e('Change Themes'); ?></h2>
<?php wp_theme_switcher(); ?>
<?php } ?>
- <h2><?php _e('Meta'); ?></h2>
<?php } ?>
</div>
SEE THIS:
- <h2><?php _e('Monthly Archives:'); ?></h2>
<?php wp_get_archives('type=monthly'); ?>
that’s your archives section. Just select and copy (so you don’t ruin anything) and paste the code down the sidebar where you want it to go, taking care not to inject it into other code. Save your changes. Then preview your website to see if you like archives where you place it.
If so, go back into the theme sidebar.php and find the original
- <h2><?php _e('Monthly Archives:'); ?></h2>
<?php wp_get_archives('type=monthly'); ?>
and delete it.
Now you’ll only have your re-positioned archives where you copy/pasted it and not duplicates.
3)erase the meta
A) Well, that’s self-explanatory. Just highlight the area and delete. But I would strongly recommend that you just copy the meta into a notepad file, save as txt onto your desktop just in case you require it for later use. Then you can delete the original if you don’t want it. I’d image that once you delete it from your sidebar, it’s gone – full stop. No Meta data in the theme at all. Hence my suggestion to save a snippet onto your computer just in case you change your mind.
3) do another “category” and stuff
A) Unable to determine exactly what you mean.
Hope this helps
Scout down the page until you find