Mục taxonomy

WordPress: Thêm Thuế Quan Thủ Công

Viết bởi vào ngày 13/05/2014
Danh mục:   Wordpress, Backoffice
Thẻ:   admin, taxonomy, wordpress
Ví dụ về việc thêm thuế quan thủ công (không thông qua cấu hình).Đặt trong tệp functions.php: /** * Manual add new Field to taxonomy or you can use plugin "taxonomy manager" * * BEGIN */ // A callback function to add a custom field to our "expertise" taxonomy function expertise_taxonomy_custom_fields($tag) { // Check for existing taxonomy meta for the term you're editing $t_id = $tag->term_id; // Get the ID of the term you're editing $term_meta = get_option("taxonomy_term_$t_id"); // ...