Wordpress
Trang chia sẻ các kiến thức, mã nguồn liên quan đến WordPress và Phát triển Website.
- Cách gắn code xóa logo nhỏ thanh navbar admin wordpress
- Bạn chỉ cần theme đoạn sau là logo ở trên thanh menu wordpress tự biến mất. [php] function remove_wp_admin_bar_logo() { global $wp_admin_bar; $wp_admin_bar->remove_menu('wp-logo'); } add_action('wp_before_admin_bar_render',...
- Fix lỗi upload ảnh ( images ) lỗi error HTTP wordpress
- [php]function ms_image_editor_default_to_gd( $editors ) { $gd_editor = 'WP_Image_Editor_GD'; $editors = array_diff( $editors, array( $gd_editor ) ); array_unshift( $editors, $gd_editor ); return $editors; } add_filter( 'wp_image_editors', 'ms_image_editor_default_to_gd' );[/php] Bạn...
- Share code thay liên kết logo wp-admin WordPress
- [php]function my_login_logo_url() { return home_url(); return "/"; } add_filter( 'login_headerurl', 'my_login_logo_url' ); [/php] Bạn chỉ việc gắn code sau vào functions.php Load lại và xem kết quả thôi.de
- Share code filter seach post_type by post wordpress
- [php]add_filter( 'pre_get_posts', 'tgm_io_cpt_search' ); /** * This function modifies the main WordPress query to include an array of * post types instead of the default 'post' post type. * * @param object $query The original query. * @return object $query The amended query. ...
- Share code bài viết cùng chuyên mục, taxonomy, category – WordPress
- [php]$post_terms = wp_get_object_terms($post->ID, 'ten_category', array('fields'=>'ids')); $post_id = $post->ID; $args = array( 'post_type' => 'post', 'tax_query' => array( array( 'taxonomy' => 'ten_category', 'field' => 'id', 'terms' => $post_terms, ...
- Code Ẩn Các Menu Admin – WordPress
- Ẩn menu dạng file đuôi .php [php] function remove_menus(){ remove_menu_page( 'index.php' ); //Dashboard remove_menu_page( 'edit.php' ); //Posts remove_menu_page( 'upload.php' ); //Media remove_menu_page( 'edit.php?post_type=page' ); //Pages remove_menu_page( 'edit-comments.php'...
- Xắp xếp thứ tự hiển thị category và taxonomies – WordPress
- [php] $argv = array( 'orderby' => 'term_order', 'hide_empty' => false ); get_terms('category', $argv); [/php] Bạn có sẵn rồi bạn có thể thêm 'orderby' => 'term_order' để nó hiển thị theo thứ tự đăng. 2. Bạn có thể cài plugin Category Order and...
- Theme Bài Viết Dự Án Bất Động Sản – WordPress
- Chức năng có sẵn trong theme : Allbum hiển thị ảnh slide Tabs hiển thị thông tin Check vị trí map google Đăng tin mua bán Gắn vào các theme của website bất động sản trong mục bài viết. Demo online 100% :...
- Code thêm class vào thẻ a menu WordPress
- [php]add_filter( 'nav_menu_link_attributes', function($atts) { $atts['class'] = "nav-link"; return $atts; }, 100, 1 );[/php] Các bạn gán code sau vào functions.php Thay class = nav-link bằng class bạn muốn hiển thị. Chúc các bạn thành công
- Share code đổi logo trong wp-admin WordPress
- [php]/** * Logo Wordpress */ function custom_login_logo() { ?> <style type="text/css"> h1 a { background-image:url(/img/logo.png) !important; background-size: 110px !important; height: 125px !important; width: 125px !important; }</style>...