全球主机交流论坛

标题: 有什么办法可以 批量替换WP文章中的字符串 [打印本页]

作者: gamecreating    时间: 2016-3-18 10:02
提示: 作者被禁止或删除 内容自动屏蔽
作者: phpsky    时间: 2016-3-18 12:39
1、 functions.php增加

function reply_to_read($atts, $content=null) {   
        extract(shortcode_atts(array("notice" => '<p class="reply-to-read">温馨提示: 此处内容需要<a href="#respond" title="评论本文">评论本文</a>后才能查看.</p>'), $atts));   
        $email = null;   
        $user_ID = (int) wp_get_current_user()->ID;   
        if ($user_ID > 0) {   
            $email = get_userdata($user_ID)->user_email;   
            //对博主直接显示内容   
            $admin_email = "[email protected]"; //博主Email   
            if ($email == $admin_email) {   
                return $content;   
            }   
        } else if (isset($_COOKIE['comment_author_email_' . COOKIEHASH])) {   
            $email = str_replace('%40', '@', $_COOKIE['comment_author_email_' . COOKIEHASH]);   
        } else {   
            return $notice;   
        }   
        if (empty($email)) {   
            return $notice;   
        }   
        global $wpdb;   
        $post_id = get_the_ID();   
        $query = "SELECT `comment_ID` FROM {$wpdb->comments} WHERE `comment_post_ID`={$post_id} and `comment_approved`='1' and `comment_author_email`='{$email}' LIMIT 1";   
        if ($wpdb->get_results($query)) {   
            return do_shortcode($content);   
        } else {   
            return $notice;   
        }   
    }   

    add_shortcode('reply', 'reply_to_read');

2、update wp_posts set post_content=REPLACE(post_content,'评论可见的内容','[reply]评论可见的内容[/reply]');
作者: 啪啪啪啪啪    时间: 2016-3-18 12:42
提示: 作者被禁止或删除 内容自动屏蔽
作者: gamecreating    时间: 2016-3-18 15:59
提示: 作者被禁止或删除 内容自动屏蔽
作者: 今晚我是你的    时间: 2016-3-19 10:28
update 表名 set 字段名=replace(字段名,'原来的内容','替换后的内容')
直接这样不行吗




欢迎光临 全球主机交流论坛 (https://443502.xyz/) Powered by Discuz! X3.4