Resource icon

Tutorials Secret PING index speed with wordpress

theme5s

Administrative
Staff member
Administrator
Theme5s Lover
Trusted Uploader
Decoding Master
Jan 8, 2018
2,398
436
113
theme5s submitted a new resource:

Secret PING index speed with wordpress - Auto ping random post wordpress with google

1. Add this code to file functions.php
PHP:
add_action('init','random_add_rewrite');
function random_add_rewrite() {
global $wp;
$wp->add_query_var('random');
add_rewrite_rule('random/?$', 'index.php?random=1', 'top');
}
add_action('template_redirect','random_template');
function random_template() {
if (get_query_var('random') == 1) {
$posts = get_posts('post_type=post&orderby=rand&numberposts=1');
foreach($posts as $post) {
$link = get_permalink($post);
}...

Read more about this resource...
 

New resources

AdBlock Detected

We get it, advertisements are annoying!

Sure, ad-blocking software does a great job at blocking ads, but it also blocks useful features of our website. For the best site experience please disable your AdBlocker.

I've Disabled AdBlock    No Thanks