add_filter(‘acf/settings/path’, ‘my_acf_settings_path’); function my_acf_settings_path( $path ) { // update path $path = get_stylesheet_directory() . ‘/acf/’; return $path; } // 2. customize ACF dir add_filter(‘acf/settings/dir’, ‘my_acf_settings_dir’); function my_acf_settings_dir( $dir ) { // update path $dir = get_stylesheet_directory_uri() . ‘/acf/’; // return return $dir; } // 3. Ẩn Acf menu admin add_filter(‘acf/settings/show_admin’, ‘__return_false’); // 4. Include ACF ..
Archives : Tháng 10-2018
&nb..
//Giới hạn 100 số từ cắt từ hàm the_excerpt : add_filter(‘excerpt_length’,function($number){ return 100; }); // thay đổi kí tự hiển thị xem tiếp trong hàm the_excerpt add_filter(‘excerpt_more’,function($more){ return ..
Phản hồi