wp_estatic
Forum Replies Created
Viewing 3 replies - 1 through 3 (of 3 total)
-
Forum: Fixing WordPress
In reply to: Blog Next & Previous button not workingHello 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.
Forum: Plugins
In reply to: [WordPress Landing Pages] Media Upload errorHi,
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.Forum: Plugins
In reply to: [Contact Form 7] Integration Tab: Want to use Recaptcha instead of No CaptchaCurrently after recaptcha setup:
I am getting this recaptcha mode
https://awesomescreenshot.com/0995ithibfI need recaptcha as this,check image below
Viewing 3 replies - 1 through 3 (of 3 total)