TODO: To change the header's content go to Dr.Explain menu Options : Project Settings : HTML (CHM) Export : Setup HTML Template and Layout
×
Menu
Index

Post thumbnail

Cài đặt thumbnail:
Post thumbnail hay có tên gọi khác (Feature image) là tính năng tạo ảnh đại diện cho bài viết/custom post type. Để kích hoạt thumbnail cho post trong wordpress bạn chèn đoạn code sau vào functions.php
// This theme uses Featured Images (also known as post thumbnails) for per-post/per-page Custom Header images
function twentytwelve_setup() {
    add_theme_support( 'post-thumbnails' );
}
add_action( 'after_setup_theme', 'twentytwelve_setup' );
 
Feature image là một box hiển thị ở cột bên phải trong trang sửa/thêm bài viết.
 
 
 
 
Made with help of Dr.Explain

Unregistered version