替换wordpress多站点中wpu选项表中的siteurl和home字段
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了替换wordpress多站点中wpu选项表中的siteurl和home字段相关的知识,希望对你有一定的参考价值。
function update_tables() { global $wpdb; for ($x=0;$x<=216;$x++): //limit for to the last blog_id created $table='wp_'.$x.'_options'; $existe= $wpdb->get_results('SELECT * FROM '.$table.''); if ($existe) foreach($existe as $entry): if ($entry->option_name=='siteurl') { } if ($entry->option_name=='home') { $home=$entry->option_value; } endforeach; endfor; } add_action('init','update_tables');
以上是关于替换wordpress多站点中wpu选项表中的siteurl和home字段的主要内容,如果未能解决你的问题,请参考以下文章