کد:function buff_callback($data){ $data = str_replace('1', '2', $data); return $data; } function buff_start(){ ob_start('buff_callback'); } function buff_end(){ ob_end_flush(); } add_action('wp_loaded', 'buff_start'); add_action('shutdown', 'buff_end');