Server IP : 14.241.111.210 / Your IP : 3.149.246.106 Web Server : Apache System : Linux localhost.localdomain 3.10.0-1160.66.1.el7.x86_64 #1 SMP Wed May 18 16:02:34 UTC 2022 x86_64 User : www ( 1001) PHP Version : 7.4.33 Disable Function : passthru,exec,system,putenv,chroot,chgrp,chown,shell_exec,popen,proc_open,pcntl_exec,ini_alter,ini_restore,dl,openlog,syslog,readlink,symlink,popepassthru,pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,imap_open,apache_setenv MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /www/wwwroot/taxixuanthanhninhbinh.com.vn/wp-content/taxi.theme/ |
Upload File : |
<?php get_header(); ?> <div class="banner"><h2 class="heading"><?php the_terms( $post->ID, 'category'); ?></h2></div> <section><?php the_breadcrumb(); ?></section> <section class="flex"> <div class="main"> <h1><?php the_title(); ?></h1> <?php if (have_posts()) : ?> <?php while (have_posts()) : the_post(); ?> <i><?php the_excerpt(); ?></i> <?php the_content(); ?> <?php endwhile; ?> <?php endif; ?> </div> <div class="sidebar"> <h2>Bài viết liên quan</h2> <div class="news"> <?php $categories = get_the_category($post->ID); if ($categories) { $category_ids = array(); foreach($categories as $individual_category) $category_ids[] = $individual_category->term_id; $args=array( 'category__in' => $category_ids, 'post__not_in' => array($post->ID), 'showposts'=>5, // Số bài viết bạn muốn hiển thị. 'caller_get_posts'=>1 ); $my_query = new wp_query($args); if( $my_query->have_posts() ) { while ($my_query->have_posts()) { $my_query->the_post(); ?> <div class="item"> <a href="<?php the_permalink(); ?>"><img src="<?php echo get_the_post_thumbnail_url(get_the_ID(),'medium'); ?>" alt="<?php the_title(); ?>"></a> <div class="content"> <h4><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h4> </div> </div> <?php } } } ?> </div> </div> </section> <?php get_footer(); ?>