pulpfree
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Wrote a post and formatting changed?Hi I deleted the post totally and everything came back π Then I posted it again and all was well….thanks for the help HandySolo! π
Forum: Fixing WordPress
In reply to: Wrote a post and formatting changed?Hmm tried that just now….didn’t work , took out any links and pics.
I think you had the right idea though because I did have a youtube link in there…coulds that have cause it?
Forum: Fixing WordPress
In reply to: Wrote a post and formatting changed?Also I have a couple of themes and tried switching to all of them and they are all messed up lol
Forum: Fixing WordPress
In reply to: How come Links aren’t shown on individual topics?wow haha thanks!
Forum: Fixing WordPress
In reply to: How come Links aren’t shown on individual topics?Any ideas π my code is above π Any help would be nice
Forum: Fixing WordPress
In reply to: How come Links aren’t shown on individual topics?ok understood I removed the link π Ya I read that still no clue lol
Forum: Fixing WordPress
In reply to: How come Links aren’t shown on individual topics?I haven’t removed the tags cause I don’t know what they are lol
Forum: Fixing WordPress
In reply to: How come Links aren’t shown on individual topics?Hi everyone π
I got the verison of Kubrick which shows the sidebar at all times but I’m having trouble figureing out what moshu meant by removing the conditional tags to show links at all times.
I tired adding <?php get_links_list(); ?> to
- <h2>Categories</h2>
-
<?php wp_list_cats(‘sort_column=name&optioncount=1&hierarchical=0’); ?>
on the sidebar.php and that worked actually BUT on the index home page the links repeated after the last link the list started over again lol.
So what am I doning wrong please π
thanks
Forum: Fixing WordPress
In reply to: How come Links aren’t shown on individual topics?Do I need to change the theme if I need the side bar in every view? I’m using the default theme now.
Forum: Fixing WordPress
In reply to: How come Links aren’t shown on individual topics?Thanks for the reply and sorry if this is a noob question but what exactly do i remove here? Also I forgot to ask how can I make the sidebar visible on a Singlepost? Thanks for the help
<div id=”sidebar”>
- <?php include (TEMPLATEPATH . ‘/searchform.php’); ?>
- <h2>Author</h2>
A little something about you, the author. Nothing lengthy, just an overview. -
<?php /* If this is a 404 page */ if (is_404()) { ?>
<?php /* If this is a category archive */ } elseif (is_category()) { ?>
You are currently browsing the archives for the <?php single_cat_title(”); ?> category.<?php /* If this is a yearly archive */ } elseif (is_day()) { ?>
You are currently browsing the /”><?php echo bloginfo(‘name’); ?> weblog archives
for the day <?php the_time(‘l, F jS, Y’); ?>.<?php /* If this is a monthly archive */ } elseif (is_month()) { ?>
You are currently browsing the /”><?php echo bloginfo(‘name’); ?> weblog archives
for <?php the_time(‘F, Y’); ?>.<?php /* If this is a yearly archive */ } elseif (is_year()) { ?>
You are currently browsing the /”><?php echo bloginfo(‘name’); ?> weblog archives
for the year <?php the_time(‘Y’); ?>.<?php /* If this is a monthly archive */ } elseif (is_search()) { ?>
You have searched the /”><?php echo bloginfo(‘name’); ?> weblog archives
for ‘<?php echo wp_specialchars($s); ?>’. If you are unable to find anything in these search results, you can try one of these links.<?php /* If this is a monthly archive */ } elseif (isset($_GET[‘paged’]) && !empty($_GET[‘paged’])) { ?>
You are currently browsing the /”><?php echo bloginfo(‘name’); ?> weblog archives.<?php } ?>
- <h2>Archives</h2>
<!– Author information is disabled per default. Uncomment and fill in your details if you want to use it.
–>
<?php wp_list_pages(‘title_li=<h2>Pages</h2>’ ); ?>
-
<?php wp_get_archives(‘type=monthly’); ?>
- <h2>Categories</h2>
-
<?php wp_list_cats(‘sort_column=name&optioncount=1&hierarchical=0’); ?>
<?php /* If this is the frontpage */ if ( is_home() || is_page() ) { ?>
<?php get_links_list(); ?>- <h2>Meta</h2>
-
<?php wp_register(); ?>
- <?php wp_loginout(); ?>
- Valid XHTML
- XFN
- WordPress
<?php wp_meta(); ?>
<?php } ?>
</div>
Forum: Themes and Templates
In reply to: Linking header image to outside site?thanks! π