วันนี้นั่งงมมาทั้งวันว่า ทำไมหลังจากเรา Import Post เข้า Wordpress แล้ว พวก tag iFrame มันหายไป

เลยมาได้ วิธีแก้ ง่ายๆดังนี้ครับ
1. เข้าไปที่ Folder '/wp-includes' แล้วเปิดไฟล์ kses.php ขึ้นมาเพื่อทำการแก้ไข้
2. ไปบรรทัดที่ 1309 แล้วทำการ Comment ทั้ง 3 บรรทัดนี้ครับ เพื่อป้องกันไม่ให้ Wordpress remove tag iFrame ออก
// Post filtering
add_filter('content_save_pre', 'wp_filter_post_kses');
add_filter('excerpt_save_pre', 'wp_filter_post_kses');
add_filter('content_filtered_save_pre', 'wp_filter_post_kses');
ที่มา : hxxp://stackoverflow.com/questions/111568/youtube-embeds-not-working-in-wordpress-after-import-from-blogger
หวังว่าจะเป็นประโยชน์นะครับ
