content.php 2.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. <article id="post-<?php the_ID(); ?>" <?php post_class('post'); ?>>
  2. <?php
  3. if(has_post_thumbnail()):?>
  4. <figure class="post-thumbnail">
  5. <?php the_post_thumbnail('full',array('class'=>'img-fluid','alt'=>'blog-image'));?>
  6. <div class="click-view">
  7. <a <?php if(!function_exists('spice_software_plus_activate')){ echo 'href="'.esc_url(get_the_permalink()).' "';} else{ echo 'href="'.esc_url(get_the_post_thumbnail_url()).'" data-lightbox="image"';} ?> title="<?php the_title();?>"><i class="fa fa-link"></i></a>
  8. </div>
  9. </figure>
  10. <?php endif;?>
  11. <div class="post-content">
  12. <?php
  13. if(has_post_thumbnail()) { echo '<div class="entry-date">'; }else{ echo '<div class="remove-image">'; } ?>
  14. <a href="<?php echo esc_url(home_url()); ?>/<?php echo esc_html(date('Y/m', strtotime(get_the_date()))); ?>"><span class="date"><?php echo esc_html(get_the_date()); ?></span></a>
  15. <?php
  16. echo '</div>';?>
  17. <div class="entry-meta">
  18. <?php
  19. $spice_software_blog_meta_sort=get_theme_mod( 'spice_software_blog_meta_sort', array('blog_author','blog_category','blog_tag'));
  20. if ( ! empty( $spice_software_blog_meta_sort ) && is_array( $spice_software_blog_meta_sort ) ) :
  21. foreach ( $spice_software_blog_meta_sort as $spice_software_blog_meta_sort_key => $spice_software_blog_meta_sort_val ) :
  22. if ( 'blog_author' === $spice_software_blog_meta_sort_val ) :?>
  23. <a href="<?php echo esc_url(get_author_posts_url(get_the_author_meta('ID'))); ?>" alt="<?php esc_attr_e('tag','spice-software'); ?>"><i class="fa fa-user"></i><span class="author"><?php echo esc_html(get_the_author());?></span></a>
  24. <?php
  25. endif;
  26. if ( 'blog_category' === $spice_software_blog_meta_sort_val ) :
  27. if ( has_category() ) :
  28. echo '<i class="fa fa-folder-open"></i><span class="cat-links" alt="'.esc_attr__("Categories","spice-software").'">';
  29. the_category( ', ' );
  30. echo '</span>';
  31. endif;
  32. endif;
  33. if ( 'blog_tag' === $spice_software_blog_meta_sort_val ) :
  34. $spice_software_tag_list = get_the_tag_list();
  35. if (!empty($spice_software_tag_list)) {?>
  36. <i class="fa fa-tag"></i>
  37. <span class="cat-links posttag"><?php the_tags('', ', ', ''); ?></span>
  38. <?php }
  39. endif;
  40. endforeach;
  41. endif;?>
  42. </div>
  43. <header class="entry-header blog-title">
  44. <h4 class="entry-title blog-title"><a class="blog-title" href="<?php the_permalink();?>" alt="<?php esc_attr_e('blog-title','spice-software'); ?>"><?php the_title();?></a></h4>
  45. </header>
  46. <div class="entry-content">
  47. <?php spice_software_posted_content();?>
  48. <?php
  49. $spice_software_button_show_hide=get_theme_mod('spice_software_blog_content','excerpt');
  50. if($spice_software_button_show_hide=="excerpt")
  51. {
  52. if(get_theme_mod('spice_software_enable_blog_read_button',true)==true):
  53. spice_software_button_title();
  54. endif;
  55. } ?>
  56. </div>
  57. </div>
  58. </article>