swessey
Forum Replies Created
-
Forum: Developing with WordPress
In reply to: single.php only displays the_content() functionSo the thing I just found out is that I accidentally put single.php in a subfolder…
Forum: Developing with WordPress
In reply to: single.php only displays the_content() functionI located the problem: It displays stuff from the index.php file.
<?php get_header(); ?>
<div class="container">
<?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
<?php the_title(); ?>
<?php the_content(); ?><?php endwhile; else: ?>
<p>Sorry, no page found.</p>
<?php endif; ?>
</div>
<?php get_footer(); ?>
here is the page & before I only had the <?php the_content(); ?>
so therefore it only displayed <?php the_content(); ?>
on the post. Anyone have an idea why it doesn’t display the single.php?Forum: Developing with WordPress
In reply to: single.php only displays the_content() function1. What I mean is that in the loop ONLY the content function displays not even the other divs that should display.
2. All the divs are clossed in the footer.php
3, Yes The <span is a work in progress for me to display tags and the note is for me to add classes if they were needed in the nav menu. Just some note for me. ??Forum: Plugins
In reply to: [Hueman Addons] Fatal error message when editing a themeI found the problem. something in Hueman Addons creates an error so I can’t live preview another theme that’s not active. So I tried deactivating Hueman Addons and it works now, but it is a little annoying That I can’t preview a theme with Hueman Addons active ??
Forum: Fixing WordPress
In reply to: Fatal error message when editingThanks! I’ll do that!