Wordpress replace meta description

后端 未结 3 876
我在风中等你
我在风中等你 2021-01-15 06:04

I need to replace the existing generated by wp_head() function in header.php with a custom meta description. The informatio

3条回答
  •  时光说笑
    2021-01-15 06:59

        function remove_meta_descriptions($html) {
        $pattern = '//i';
        $html = preg_replace($pattern, '', $html);
        return $html;
    }
    function clean_meta_descriptions($html) {
        ob_start('remove_meta_descriptions');
    }
    add_action('get_header', 'clean_meta_descriptions', 100);
    add_action('wp_footer', function(){ ob_end_flush(); }, 100);
    

提交回复
热议问题