Aleksandra Sasha
Forum Replies Created
-
Forum: Plugins
In reply to: [WP-PageNavi] How To Add PageNavi to Twenty Thirteen to WordPress ThemeCreate a child theme, add a functions.php and add this
// WP-PageNavi function twentythirteen_paging_nav() { global $wp_query; // Don't print empty markup if there's only one page. if ( $wp_query->max_num_pages < 2 ) return; ?> <nav class="navigation paging-navigation" role="navigation"> <h1 class="screen-reader-text"><?php _e( 'Posts navigation', 'twentythirteen' ); ?></h1> <div class="nav-links"> <?php wp_pagenavi(); ?> </div><!-- .nav-links --> </nav><!-- .navigation --> <?php }
Forum: Plugins
In reply to: [Facebook Comments] Warning http // is unreachableWarning http // is unreachable replaced post excerpts in search results (for all new posts after updating plugin), what means losing traffic, has anyone got the same problem or has an answer?
Forum: Plugins
In reply to: WordPress SEO Yoast – Double title in Google searchyes, it is, anyway check this out https://www.ads-software.com/support/topic/plugin-wordpress-seo-by-yoast-titles-not-working?replies=12 – the same topic.
https://yoast.com/articles/wordpress-seo/#titles, Optimize your Titles for SEO
also a good reason to do it – https://wpmu.org/speeding-up-your-wordpress-website-11-ways-to-improve-your-load-time/ 8. Reduce PHP Queries
if u ar not sure, u can always make a copy of your file.php, b4 doing anything
Forum: Plugins
In reply to: [Yoast SEO] [Plugin: WordPress SEO by Yoast] Titles not workinghmm…I am usin’ 1.0.3, Force Rewrite option doesnt work for me, so Ive just changed it manually….anyway here is the advice i followed https://spoonjab.com/woothemes-and-yoast-seo-produce-double-title-separators/
Forum: Plugins
In reply to: [Yoast SEO] [Plugin: WordPress SEO by Yoast] Titles not workingdo it do it manually, replace everything between <title> and </title> tags in header.php, it should be just like WordPress SEO Yoast requires – <title><?php wp_title(”); ?></title>
Forum: Plugins
In reply to: WordPress SEO Yoast – Double title in Google searchdo it do it manually, replace everything between <title> and </title> tags in header.php, it should be just like WordPress SEO Yoast requires – <title><?php wp_title(”); ?></title>