Forum Replies Created

Viewing 2 replies - 1 through 2 (of 2 total)
  • I am currently having the same issue. I tried re-installing but it did not fix it for me. Has anyone figured anything else out yet?

    Thread Starter amptechnow

    (@amptechnow)

    Yeah I figured it out. I made this my content-page.php file:

    <article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
    
    <?php if ( is_page('Home') ) { ?>
    	<div class="title">
    
    		<?php edit_post_link( __( 'Edit This', 'parament' ), '<div class="entry-byline">', '</div>' ); ?>
    	</div><!-- end title -->
    
    <?php } else { ?>
    	<div class="title">
    		<h2 class="entry-title"><?php the_title(); ?></h2>
    		<?php edit_post_link( __( 'Edit This', 'parament' ), '<div class="entry-byline">', '</div>' ); ?>
    	</div><!-- end title -->
    <?php } ?>
    
    	<div class="entry-content">
    		<?php
    			the_content( __( 'Continue Reading', 'parament' ) );
    			wp_link_pages( array(
    				'after'       => '</div>',
    				'before'      => '<div class="entry-navigation">',
    				'link_after'  => '</span>',
    				'link_before' => '<span>',
    			) );
    		?>
    	</div>
    
    </article>

    [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.]

    And I am using parament theme, but have changed a lot of things about the theme.

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