Guest User

Untitled

a guest
Jul 18th, 2018
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.86 KB | None | 0 0
  1. function custome_post_reg(){
  2. register_post_type('slider', array(
  3.  
  4. 'public' => true,
  5. 'label' => 'slide',
  6. 'labels' => array(
  7. 'name' => 'slides',
  8. 'singular_name' => 'slide',
  9. 'add_new' => 'add new slide',
  10. ),
  11.  
  12. 'supports' => array( 'title', 'editor', 'author', 'thumbnail', 'excerpt', 'trackbacks', 'custom-fields', 'comments', 'revisions', 'post-formats' ),
  13.  
  14. ));
  15.  
  16. }
  17.  
  18. add_action('init', 'custome_post_reg');
  19.  
  20. //Custom Post Query index.php geya kiraty hoba.
  21.  
  22. <?php query_posts( array(
  23. 'post_type' => 'slide',
  24. 'posts_per_page' => 3,
  25. ) ); ?>
  26. <?php while ( have_posts() ) : the_post();?>
  27. <li>
  28. <?php the_post_thumbnail('slide_image'); ?>
  29. <div class="flex-caption">
  30. <h3><?php the_title(); ?></h3>
  31. <?php the_excerpt(); ?>
  32. <a href="#" class="btn btn-theme">Learn More</a>
  33. </div>
  34. </li>
  35. <?php endwhile; ?>
  36. <?php wp_reset_query();?>
Add Comment
Please, Sign In to add comment