Title: mrutt's Replies | WordPress.org

---

# mrutt

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

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

 Search replies:

## Forum Replies Created

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

 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [permalinks return blank page, but correct URL](https://wordpress.org/support/topic/permalinks-return-blank-page-but-correct-url/)
 *  Thread Starter [mrutt](https://wordpress.org/support/users/mrutt/)
 * (@mrutt)
 * [11 years, 11 months ago](https://wordpress.org/support/topic/permalinks-return-blank-page-but-correct-url/#post-4993984)
 * I went into the admin to change themes and these 2 errors are present:
 * Warning: implode() [function.implode]: Invalid arguments passed in /home/content/
   d/e/s/designdesign/html/dev/MA/wordpress/wp-includes/class-wp-theme.php on line
   675
 * ERROR: The theme directory “twentyfourteen” does not exist.
 * It looks as though there wasn’t a child theme created?
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [permalinks return blank page, but correct URL](https://wordpress.org/support/topic/permalinks-return-blank-page-but-correct-url/)
 *  Thread Starter [mrutt](https://wordpress.org/support/users/mrutt/)
 * (@mrutt)
 * [11 years, 11 months ago](https://wordpress.org/support/topic/permalinks-return-blank-page-but-correct-url/#post-4993978)
 * I’ve tried permalink presets, and seeing it with default, and that did nothing.
 * I’m nervous to change the wordpress theme, is there any possibility of it breaking
   things with the current theme since it is so customized?
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [permalinks return blank page, but correct URL](https://wordpress.org/support/topic/permalinks-return-blank-page-but-correct-url/)
 *  Thread Starter [mrutt](https://wordpress.org/support/users/mrutt/)
 * (@mrutt)
 * [11 years, 11 months ago](https://wordpress.org/support/topic/permalinks-return-blank-page-but-correct-url/#post-4993959)
 * Oops – Sorry! here it is.
 * [http://www.designdesignonline.com/dev/MA/news.php](http://www.designdesignonline.com/dev/MA/news.php)
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [permalinks return blank page, but correct URL](https://wordpress.org/support/topic/permalinks-return-blank-page-but-correct-url/)
 *  Thread Starter [mrutt](https://wordpress.org/support/users/mrutt/)
 * (@mrutt)
 * [11 years, 11 months ago](https://wordpress.org/support/topic/permalinks-return-blank-page-but-correct-url/#post-4993936)
 * this is the page that is not working correctly. As you can see, it is pulling
   the content for the loop feed on this page, but if you click the headline or 
   <more> it returns an empty page.
 * I actually jumped into this project after a previous developer left. Was hesitant
   to update versions in case it messed something up, since everything is so close
   to working and finalized.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Empty Single.php](https://wordpress.org/support/topic/empty-singlephp/)
 *  Thread Starter [mrutt](https://wordpress.org/support/users/mrutt/)
 * (@mrutt)
 * [11 years, 11 months ago](https://wordpress.org/support/topic/empty-singlephp/#post-4986437)
 * Posts are previewing properly to the feed at this code
 *     ```
       <?php query_posts('posts_per_page=2&cat=3'); ?>
   
        <?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
   
       	<br />
           <a href="<?php the_permalink() ?>" class="news-title"><?php the_title(); ?></a>
   
           <p><?php /* the_excerpt(); */
   
       		$trimexcerpt = get_the_excerpt();
       		$shortexcerpt = wp_trim_words(
         		$trimexcerpt,
   
       		// limit number of words
         		$num_words = 25,
   
       		// design your read more link
         		$more = '… <a href="' . get_permalink() . '">more</a>' );
   
       		// show excerpt with read more link
       		echo '<p>' . $shortexcerpt . '</p>';
   
       	?></p>
   
           <br />
   
       	<?php endwhile; else: ?>
   
       	<p>Sorry, no posts matched your criteria.</p>
   
       <?php endif; ?>
       ```
   
 * this is the current single.php
 *     ```
       <?php
       /**
        * The Template for displaying all single posts.
        */
   
       get_header(); ?>
   
       <div id="content" role="main">
   
           <?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
           <div <?php post_class() ?> id="post-<?php the_ID(); ?>">
               <h2><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>"><?php the_title(); ?></a></h2>
               <small><?php the_time('F jS, Y') ?> <!-- by <?php the_author() ?> --></small>
   
               <div class="entry">
                   <?php the_content(); ?>
               </div>
   
               <p class="postmetadata"><?php the_tags('Tags: ', ', ', '<br />'); ?> Posted in <?php the_category(', ') ?> | <?php edit_post_link('Edit', '', ' | '); ?>  <?php comments_popup_link('No Comments »', '1 Comment »', '% Comments »'); ?></p>
           </div>
           <?php endwhile; endif; ?>
   
       </div><!-- #content -->
   
       <br /><hr /><br />    
   
       <div class="navigation">
           <div class="left50">
           <?php previous_post('« %',
            'Previous Post ', 'in_same_cat', 'yes' ); ?>
           </div><!--/left50-->
   
           <div class="right50">
           <?php next_post('% » ',
            'Next Post', 'in_same_cat', 'yes' ); ?>
           </div><!--/right50-->
       </div> <!--/navigation-->
   
       <div style="clear:both;"></div>
       <?php get_footer(); ?>
       ```
   
 * _[Moderator Note: [No bumping](http://codex.wordpress.org/Forum_Welcome#No_Bumping).
   If it’s that urgent, consider [hiring someone](http://jobs.wordpress.net/) instead.]_

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