get_pages causing duplicates
get_pages causing duplicates
get_pages causing duplicates
I don’t want my website to accessed via my public IP address
I think I found the issue. It looks WPML, the translation plugin, makes a duplicate page for every translated version of a page. So we had multiples of a few pages that were translated into various languages. Sidenote: WPML stopped working a couple months ago and none of their fixes have worked yet. So no … Read more
It is possible to use another site’s RSS feed to create content on a site. See this plugin. If you go to Settings > Reading (/wp-admin/options-reading.php) you could try and remove the Full Text from the post feed.
Prevent wp_insert_user from creating duplicate users
You can change it using following code, add it in your theme function.php or in plugin. remove_action ( ‘wp_head’ , ‘rel_canonical’ ) ; add_action ( ‘wp_head’ , ‘my_rel_canonical’ ) ; function my_rel_canonical () { ob_start () ; rel_canonical () ; $rel_content = ob_get_contents () ; ob_end_clean () ; echo str_replace ( “https:” , “http:” , … Read more