Forum Replies Created

Viewing 3 replies - 1 through 3 (of 3 total)
  • Hello nesoor,

    I think this code can help you:

    
    <?php
    		// Start the loop.
    		while ( have_posts() ) : the_post();
    
    			// Include the single post content template.
    			get_template_part( 'template-parts/content', 'single' );
    
    			// If comments are open or we have at least one comment, load up the comment template.
    			if ( comments_open() || get_comments_number() ) {
    				comments_template();
    			}
    
    			if ( is_singular( 'attachment' ) ) {
    				// Parent post navigation.
    				the_post_navigation( array(
    					'prev_text' => _x( '<span class="meta-nav">Published in</span><span class="post-title">%title</span>', 'Parent post link', 'twentysixteen' ),
    				) );
    			} elseif ( is_singular( 'post' ) ) {
    				// Previous/next post navigation.
    				the_post_navigation( array(
    					'next_text' => '<span class="meta-nav" aria-hidden="true">' . __( 'Next', 'twentysixteen' ) . '</span> ' .
    						'<span class="screen-reader-text">' . __( 'Next post:', 'twentysixteen' ) . '</span> ' .
    						'<span class="post-title">%title</span>',
    					'prev_text' => '<span class="meta-nav" aria-hidden="true">' . __( 'Previous', 'twentysixteen' ) . '</span> ' .
    						'<span class="screen-reader-text">' . __( 'Previous post:', 'twentysixteen' ) . '</span> ' .
    						'<span class="post-title">%title</span>',
    				) );
    			}
    
    			// End of the loop.
    		endwhile;
    		?>
    • This reply was modified 7 years, 5 months ago by wp_estatic.
    Thread Starter wp_estatic

    (@wp_estatic)

    Hi,
    I have solved this issue by updating wordpress version to latest wordpress version.
    After updating wordpress version it works fine.

    Hope that helps you too to solve your problem.

    Thanks
    Suman W.

    Thread Starter wp_estatic

    (@wp_estatic)

    Currently after recaptcha setup:
    I am getting this recaptcha mode
    https://awesomescreenshot.com/0995ithibf

    I need recaptcha as this,check image below

    https://awesomescreenshot.com/0505ithe4e

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