mrutt
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: permalinks return blank page, but correct URLI 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
In reply to: permalinks return blank page, but correct URLI’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
In reply to: permalinks return blank page, but correct URLOops – Sorry! here it is.
Forum: Fixing WordPress
In reply to: permalinks return blank page, but correct URLthis 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
In reply to: Empty Single.phpPosts 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. If it’s that urgent, consider hiring someone instead.]