UPDATE wp_options SET option_value = replace(option_value, ‘http://www.oldurl‘, ‘http://www.newurl‘) WHERE option_name = ‘home’ OR option_name = ‘siteurl’; UPDATE wp_posts SET guid = replace(guid, ‘http://www.oldurl’,’http://www.newurl’); UPDATE wp_posts […]
How to get href attribute value using PHP?
<?php $str = ‘<a href=”http://phpkishan.blogspot.in/”>PHP Kishan Kachhadiya</a>’;$s = explode(‘href=”‘,$str);$t = explode(‘”>’,$s[1]);print $t[0]; ?>