grapixeye
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Adding External LinksGreat…that solved the Problem! Thanks a bunch guys!!!!
Forum: Fixing WordPress
In reply to: Adding External LinksI think I may have found it! This is in the index.php file…maybe all I need to do is to copy this and change the title.:
<div id=”sidebar”>
<h2><?php _e(‘Wine List’); ?></h2>- <?php get_links(‘-1’, ‘
- ‘, ‘
‘, ‘ ‘); ?>
Forum: Fixing WordPress
In reply to: Adding External Links<h2>General Store</h2>
<?php get_links_list(‘id’); ?>like this? Or is that somewhere else in another .php file?
By the way i”m using the Theme called Connections
Forum: Fixing WordPress
In reply to: Adding External LinksNothing is above that. Thats the first line.
To the Mr.Obvious post…I tried that…I have a links catagory called General Store and a link in it for “Your Mac Life”. But for some reason that doesn’t work. I’l probably have to remove that section totally and start over from scratch…if I can figure that out (smiles) sigh!
Forum: Fixing WordPress
In reply to: Adding External LinksThis is the only thing I can find…it was sidebar.php file and I used it to change the name of the section to General Store. Not sure I understand the rest of the code. I even tried to use the same code thats under General Store. Is this the code that you mean..?
<h2>General Store</h2>
- <?php wp_list_pages(‘title_li=’ ); ?>
<h2><?php _e(‘The Pantry’); ?></h2>
- <?php wp_list_cats(‘optioncount=1’); ?>
<h2><label for=”s”><?php _e(‘Search:’); ?></label></h2>
-
<form id=”searchform” method=”get” action=”<?php echo $_SERVER[‘PHP_SELF’]; ?>”>
<div style=”text-align:center”>
<input type=”text” name=”s” id=”s” size=”15″ />
<input type=”submit” name=”submit” value=”<?php _e(‘Search’); ?>” />
</div>
</form>
<h2><?php _e(‘Monthly:’); ?></h2>
- <?php wp_get_archives(‘type=monthly&show_post_count=true’); ?>
<h2><?php _e(‘RSS Feeds:’); ?></h2>
Forum: Fixing WordPress
In reply to: Adding External LinksThats a no-go. I tried to add the link “Your Mac Life” to the General Store “section and as you can see it ended up under Wine List. I even created a category called General Store but it still went to the Wine List Section. What am I doing wrong. I want it under The General Store section.