// loại bỏ widget meta mặc định của wordpress function remove_meta_widget() { unregister_widget('WP_Widget_Meta'); } //hạn chế dung lượng tải lên add_filter( 'upload_size_limit', 'b5f_increase_upload' ); function b5f_increase_upload( $bytes ) { //return 524288; // 512kb return 2097152; // 2MB } // chuyen huong ve trang chu nếu chưa login or login bang tk không phải là administrator function chili_wp_redirect_disable_author_query() { $is_author_set = get_query_var( 'author', '' ); if ( $is_author_set != '' && !is_admin()) { wp_redirect( home_url(), 301 ); exit; } } add_action( 'template_redirect', 'chili_wp_redirect_disable_author_query' ); // xoa cache khi luu hoac chinh sua bai viet function chili_delete_all_cache_when_save_post( $post_id ) { // If this is just a revision, don't send the email. if ( wp_is_post_revision( $post_id ) ) { return; } if( function_exists('rocket_clean_cache_dir') ){ rocket_clean_cache_dir(); } } add_action( 'save_post', 'chili_delete_all_cache_when_save_post' );