<?php $recent = new WP_Query("cat=5&showposts=12"); while($recent->have_posts()) : $recent->the_post();?> <li> <figure> <a class="link" href="<?php the_permalink(); ?>" alt="<?php the_title(); ?>"> <img src="<?php echo catch_that_image() ?>" alt="<?php the_title(); ?>"> <figcaption> </a> <h3><?php if (strlen($post->post_title) > 16) echo mb_substr($post->post_title, 0, 16) . ' ...'; else echo $post->post_title;?></h3> </figcaption> </figure> </li> <?php endwhile; ?>
<?php echo of_get_option( 'select_categories', '0' ); ?>
<?php $recent = new WP_Query("cat=5&showposts=12"); while($recent->have_posts()) : $recent->the_post();?>
$cat = of_get_option( 'select_categories', '0' ); $args = array( 'cat' => $cat, 'posts_per_page' => $post_numbers, 'post_status' => 'publish', 'post_type' => 'post', 'ignore_sticky_posts' => 1 ); $recentPosts = new WP_Query($args); if ( $recentPosts->have_posts() ) { // ...
เพื่อความปลอดภัยของเว็บบอร์ด ไม่อนุญาติให้แทรก แท็ก [img]....[/img] โดยการอัพโหลดไฟล์รูปจากที่อื่น เช่นเว็บไซต์ ฟรีอัพโหลดต่าง ๆ อัพโหลดแทรกรูปภาพ ให้ใช้บริการอัพโหลดไฟล์ของไทยครีเอท และตัดรูปภาพให้พอดีกับสกรีน เพื่อความโหลดเร็วและไฟล์ไม่ถูกลบทิ้ง