Forum Replies Created

Viewing 3 replies - 1 through 3 (of 3 total)
  • Forum: Themes and Templates
    In reply to: Title help

    view source you see this

    <title> </title>

    you need to edit that in your templates files. Probably under header.php

    Thread Starter gumbomaverick

    (@gumbomaverick)

    Nice forum. No help. I figured it out though.

    Thread Starter gumbomaverick

    (@gumbomaverick)

    Ok, here is more information:

    I have this code in my page where I want the content of a particular page to show, but instead the entire blog shows

    <?php
    if (is_home()) {
      echo '<div id="content">';
    }
    else {
      echo '<div id="content-big">';
    }
    ?>
    
    <?php if (have_posts()) : while (have_posts()) : the_post(); ?>
    
    <div class="post">
    	 <h2 id="post-<?php the_ID(); ?>"><a href="<?php the_permalink() ?>" rel="bookmark"><?php the_title(); ?></a></h2>
    	<div class="meta"><?php _e("Blogged under"); ?> <?php the_category(',') ?> <?php _e("by")?> <?php the_author() ?> <?php _e("on");?> <?php the_time('l j F Y'); ?>  <?php edit_post_link(__('Edit This')); ?></div>
    
    	<div class="storycontent">
    		<?php the_content(__('(more...)')); ?>
    	</div>
    
    	<div class="feedback">
                <?php wp_link_pages(); ?>
                <?php comments_popup_link(__('Comments (0)'), __('Comments (1)'), __('Comments (%)')); ?>
    	</div>
    
    </div>
    
    <?php comments_template(); // Get wp-comments.php template ?>
    
    <?php endwhile; else: ?>
    <p><?php _e('Sorry, no posts matched your criteria.'); ?></p>
    <?php endif; ?>

    Can someone please tell me why when I go to page->manage and add a new page, put in some text and maybe a picture there and hit publish, why does my blog show instead of that information?

Viewing 3 replies - 1 through 3 (of 3 total)