vi da nam ben trong file // ============================================= if ( ! function_exists( 'nwd_blog_posts_shortcode' ) ) : function nwd_blog_posts_shortcode( $atts ) { $atts = shortcode_atts( array( 'posts' => 3, 'category' => '', 'title' => 'Tin tức & Kiến thức', 'subtitle' => 'Cập nhật liên tục Kiến thức, Thông tin ngành SEO và Google Update mới nhất.', ), $atts, 'nwd_blog' ); $args = array( 'post_type' => 'post', 'post_status' => 'publish', 'posts_per_page' => intval( $atts['posts'] ), 'orderby' => 'date', 'order' => 'DESC', ); if ( ! empty( $atts['category'] ) ) { $args['category_name'] = sanitize_text_field( $atts['category'] ); } $blog_url = get_permalink( get_option( 'page_for_posts' ) ); if ( ! $blog_url ) { $blog_url = home_url( '/blog/' ); } $q = new WP_Query( $args ); $html = ''; $html .= '
'; $html .= '
'; $html .= '
'; $html .= '

' . wp_kses_post( $atts['title'] ) . '

'; $html .= '

' . esc_html( $atts['subtitle'] ) . '

'; $html .= '
'; $html .= 'BẮT ĐẦU '; $html .= '
'; if ( $q->have_posts() ) { $html .= '
'; while ( $q->have_posts() ) { $q->the_post(); $permalink = get_the_permalink(); $title = get_the_title(); $date = get_the_date( 'j M Y' ); $excerpt = wp_trim_words( get_the_excerpt(), 18, '...' ); $html .= '
'; // Anh thumbnail $html .= ''; if ( has_post_thumbnail() ) { $thumb_url = get_the_post_thumbnail_url( null, 'medium' ); $html .= '' . esc_attr( $title ) . ''; } else { $html .= '
'; $html .= ''; $html .= '
'; } $html .= '
'; // Noi dung card $html .= '
'; $html .= '
'; $html .= ''; $html .= esc_html( $date ); $html .= '
'; $html .= '

' . esc_html( $title ) . '

'; $html .= '
'; $html .= '

' . esc_html( $excerpt ) . '

'; $html .= ''; $html .= '
'; $html .= '
'; } wp_reset_postdata(); $html .= '
'; } $html .= ''; $html .= '
'; return $html; } add_shortcode( 'nwd_blog', 'nwd_blog_posts_shortcode' ); endif;