Title: nmcnulty's Replies | WordPress.org

---

# nmcnulty

  [  ](https://wordpress.org/support/users/nmcnulty/)

 *   [Profile](https://wordpress.org/support/users/nmcnulty/)
 *   [Topics Started](https://wordpress.org/support/users/nmcnulty/topics/)
 *   [Replies Created](https://wordpress.org/support/users/nmcnulty/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/nmcnulty/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/nmcnulty/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/nmcnulty/engagements/)
 *   [Favorites](https://wordpress.org/support/users/nmcnulty/favorites/)

 Search replies:

## Forum Replies Created

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

 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [author name](https://wordpress.org/support/topic/author-name-2-2/)
 *  Thread Starter [nmcnulty](https://wordpress.org/support/users/nmcnulty/)
 * (@nmcnulty)
 * [16 years ago](https://wordpress.org/support/topic/author-name-2-2/#post-1508235)
 * Thanks! That worked. I need to put a ; after ‘Posted on: ‘ but other than that
   it worked. So the final is:
    <?php if(get_option(‘uwc_dates_index’) == ‘on’) {
   echo ‘<div class=”date”>’; echo ‘Posted on:’ ; the_time(get_option(‘date_format’));
   echo ‘</div>’; } ?>
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [author name](https://wordpress.org/support/topic/author-name-2-2/)
 *  Thread Starter [nmcnulty](https://wordpress.org/support/users/nmcnulty/)
 * (@nmcnulty)
 * [16 years ago](https://wordpress.org/support/topic/author-name-2-2/#post-1508219)
 * Thanks for your help! Here is the code:
 * <div class=”ind-post”>
    <h1>” title=”<?php printf(__(“Permanent Link to %s”, “
   magazine-basic”), the_title_attribute(‘echo=0’)); ?>”><?php the_title(); ?>
   </
   h1>
    <div class=”meta”> <?php if(get_option(‘uwc_dates_index’) == ‘on’) {echo‘
   <div class=”date”>’; the_time(get_option(‘date_format’)); echo ‘</div>’; } ?>
   <?php if(get_option(‘uwc_authors_index’) == ‘off’) { _e(“By”, “magazine-basic”);
   echo ‘ ‘; the_author_posts_link(); } ?> </div>
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [author name](https://wordpress.org/support/topic/author-name-2-2/)
 *  Thread Starter [nmcnulty](https://wordpress.org/support/users/nmcnulty/)
 * (@nmcnulty)
 * [16 years ago](https://wordpress.org/support/topic/author-name-2-2/#post-1508216)
 * That works, but the “Posted on” appears two lines about the date. I would like
   it in the same line, directly in front of the date.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [author name](https://wordpress.org/support/topic/author-name-2-2/)
 *  Thread Starter [nmcnulty](https://wordpress.org/support/users/nmcnulty/)
 * (@nmcnulty)
 * [16 years ago](https://wordpress.org/support/topic/author-name-2-2/#post-1508184)
 * Thank you. Archive.php works.
 * This leads me to the next question. Currently on all pages it is:
    title of post
   date post
 * Next to the date, I would like to have “Posted on:” so that it reads
    Posted 
   on: May 21
 * Is there a way to change this in the coding?
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [404 – File or directory not found Error](https://wordpress.org/support/topic/404-file-or-directory-not-found-error/)
 *  Thread Starter [nmcnulty](https://wordpress.org/support/users/nmcnulty/)
 * (@nmcnulty)
 * [16 years ago](https://wordpress.org/support/topic/404-file-or-directory-not-found-error/#post-1505717)
 * In the default theme, the top page does not seperate into individual pages. I
   deactivated and reactivated all plugins, but this did not work. I think it is
   something with the coding (line 20-21). Does anyone know how to change the coding
   to fix this problem?
 * <?php get_header(); ?>
    <?php $options = get_option(“widget_sideFeature”); $posts
   = get_option(‘uwc_number_posts’); $paged = (get_query_var(‘paged’)) ? get_query_var(‘
   paged’) : 1; if (is_active_widget(‘widget_myFeature’)) { $args = array( ‘cat’
   =>’-‘.$options[‘category’], ‘showposts’=>$posts, ‘paged’=>$paged, ); } else {
   $args = array( ‘showposts’=>$posts, ‘paged’=>$paged, ); } if(!get_option(‘uwc_number_posts’)){
   $args = array( ‘showposts’=>6, ‘paged’=>$paged, ); } $x = 1; query_posts($args);?
   > <?php if(!stristr($_SERVER[‘REQUEST_URI’],’/page/’)) { if(get_option(‘uwc_latest_story’)
   == “on”) { echo ‘<h5 class=”latest”>’.__(‘ ‘, “magazine-basic”).’ </h5>’; } if(
   get_option(‘uwc_post_layout’) == 1) { include (TEMPLATEPATH.’/layout/option1.
   php’); } elseif(get_option(‘uwc_post_layout’) == 2) { include (TEMPLATEPATH.’/
   layout/option1.php’); } elseif(get_option(‘uwc_post_layout’) == 4) { include (
   TEMPLATEPATH.’/layout/option1.php’); } else { include (TEMPLATEPATH.’/layout/
   option1.php’); } } else { include (TEMPLATEPATH.’/layout/option1.php’); } ?> 
   <?php if(function_exists(‘pagination’)) { pagination(); } ?> <?php get_footer();?
   >
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [404 – File or directory not found Error](https://wordpress.org/support/topic/404-file-or-directory-not-found-error/)
 *  Thread Starter [nmcnulty](https://wordpress.org/support/users/nmcnulty/)
 * (@nmcnulty)
 * [16 years ago](https://wordpress.org/support/topic/404-file-or-directory-not-found-error/#post-1505701)
 * They are already set to default
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Text in Post Disappearing](https://wordpress.org/support/topic/text-in-post-disappearing/)
 *  Thread Starter [nmcnulty](https://wordpress.org/support/users/nmcnulty/)
 * (@nmcnulty)
 * [16 years, 1 month ago](https://wordpress.org/support/topic/text-in-post-disappearing/#post-1496416)
 * To answer the first question, when I go to edit a post, the text is not there.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Text in Post Disappearing](https://wordpress.org/support/topic/text-in-post-disappearing/)
 *  Thread Starter [nmcnulty](https://wordpress.org/support/users/nmcnulty/)
 * (@nmcnulty)
 * [16 years, 1 month ago](https://wordpress.org/support/topic/text-in-post-disappearing/#post-1496415)
 * I am not familiar with coding. Below is the code under single post. I did control
   F and found “content” but not “excerpt
 * <?php get_header(); ?>
    <?php if (have_posts()) : while (have_posts()) : the_post();?
   > <div class=”post” id=”post-<?php the_ID(); ?>”> <h1><?php the_title(); ?></
   h1> <div class=”meta”> <?php if(get_option(‘uwc_dates_posts’) == ‘on’) { echo‘
   <div class=”date”>’; the_time(get_option(‘date_format’)); echo ‘</div>’; } ?>
   <?php if(get_option(‘uwc_authors_posts’) == ‘on’) { _e(“By”, “magazine-basic”);
   echo ‘ ‘; the_author_posts_link(); } ?> </div> <div class=”entry”> <?php $subtitle
   = get_post_meta($post->ID, ‘subtitle’, true); if($subtitle) echo ‘<p class=”sub”
   >’.$subtitle.'</p>’; ?> <?php the_content(); ?> <?php the_tags(__(‘<p class=”
   tags”><small>Tags: ‘, “magazine-basic”), ‘, ‘, ‘</small></p>’); ?> </div> <?php
   wp_link_pages(array(‘before’ => ‘<p>**‘.__(‘Pages’, “magazine-basic”).’** ‘, ‘
   after’ => ‘</p>’, ‘next_or_number’ => ‘number’)); ?> </div>
 *  <?php comments_template(); ?>
    <?php endwhile; else: ?> <p><?php _e(“Sorry, 
   no posts matched your criteria.”, “magazine-basic”); ?></p> <?php endif; ?> <?
   php get_footer(); ?>

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