• I just noticed this tonight, but my most recent post, and then a test post after, are not appearing on the recent posts homepage of my blog. More than that, they are also not appearing in “All posts” or “published posts” but are still available via the permalink.

    Im made the most recent post a sticky and that is keeping it at the top, but if I remove that, it disappears entirely.

    Any ideas what could be causing this and how to fix it?

    my blog is https://www.pathsunwritten.com

Viewing 10 replies - 16 through 25 (of 25 total)
  • I made copy-paste index.php of the child theme directory, maybe this can be helpful?:

    <?php /**  * The main template file.  *  * This is the most generic template file in a WordPress theme  * and one of the two required files for a theme (the other being style.css).  * It is used to display a page when nothing more specific matches a query.  * E.g., it puts together the home page when no home.php file exists.  * Learn more: https://codex.www.ads-software.com/Template_Hierarchy  *  * @package WordPress  * @subpackage Twenty_Eleven_Child  */  get_header(); ?>  		<div id="primary"> 			<div id="content" role="main">  			<?php if ( have_posts() ) : ?>  				<?php twentyelevenchild_content_nav( 'nav-above' ); ?>  				<?php /* Start the Loop */ ?> 				<?php while ( have_posts() ) : the_post(); ?>  					<?php get_template_part( 'content', get_post_format() ); ?>  				<?php endwhile; ?>  				<?php twentyelevenchild_content_nav( 'nav-below' ); ?>  			<?php else : ?>  				<article id="post-0" class="post no-results not-found"> 					<header class="entry-header"> 						<h1 class="entry-title"><?php _e( 'Nothing Found', 'twentyelevenchild' ); ?></h1> 					</header><!-- .entry-header -->  					<div class="entry-content"> 						<p><?php _e( 'Apologies, but no results were found for the requested archive. Perhaps searching will help find a related post.', 'twentyelevenchild' ); ?></p> 						<?php get_search_form(); ?> 					</div><!-- .entry-content --> 				</article><!-- #post-0 -->  			<?php endif; ?>  			</div><!-- #content --> 		</div><!-- #primary -->  <?php get_sidebar(); ?> <?php get_footer(); ?>

    [Moderator Note: Please post code & markup between backticks or use the code button. Your posted code may now have been permanently damaged by the forum’s parser.]

    I’m sorry but that code is unreadable.

    What do you suggest me to do?

    Can you post something that is readable?

    <?php /** * The main template file. * * This is the most generic template file in a WordPress theme * and one of the two required files for a theme (the other being style.css). * It is used to display a page when nothing more specific matches a query. * E.g., it puts together the home page when no home.php file exists. * Learn more: https://codex.www.ads-software.com/Template_Hierarchy * * @package WordPress * @subpackage Twenty_Eleven_Child */ get_header(); ?> <div id=”primary”> <div id=”content” role=”main”> <?php if ( have_posts() ) : ?> <?php twentyelevenchild_content_nav( ‘nav-above’ ); ?> <?php /* Start the Loop */ ?> <?php while ( have_posts() ) : the_post(); ?> <?php get_template_part( ‘content’, get_post_format() ); ?> <?php endwhile; ?> <?php twentyelevenchild_content_nav( ‘nav-below’ ); ?> <?php else : ?> <article id=”post-0″ class=”post no-results not-found”> <header class=”entry-header”> <h1 class=”entry-title”><?php _e( ‘Nothing Found’, ‘twentyelevenchild’ ); ?></h1> </header><!– .entry-header –> <div class=”entry-content”> <p><?php _e( ‘Apologies, but no results were found for the requested archive. Perhaps searching will help find a related post.’, ‘twentyelevenchild’ ); ?></p> <?php get_search_form(); ?> </div><!– .entry-content –> </article><!– #post-0 –> <?php endif; ?> </div><!– #content –> </div><!– #primary –> <?php get_sidebar(); ?> <?php get_footer(); ?>

    Andrew Nevins

    (@anevins)

    WCLDN 2018 Contributor | Volunteer support

    Beautify it and then share it on Pastebin

    @doubles – this isn’t even your thread – you should have started your own.

    What now?

    I know, but I couldnt find where to start it now. Tnx, anyway, I will try to figure it out what to do.

    Go to the top of this forum and click on the “Add New” button.

Viewing 10 replies - 16 through 25 (of 25 total)
  • The topic ‘new posts not appearing’ is closed to new replies.