1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
|
<?php /** * @package nasatheme */
global $nasa_opt;
$show_author_info = (!isset($nasa_opt['show_author_info']) || $nasa_opt['show_author_info']) ? true : false; $show_date_info = (!isset($nasa_opt['show_date_info']) || $nasa_opt['show_date_info']) ? true : false; $show_cat_info = (isset($nasa_opt['show_cat_info']) && $nasa_opt['show_cat_info']) ? true : false; $show_tag_info = (isset($nasa_opt['show_tag_info']) && $nasa_opt['show_tag_info']) ? true : false; $show_comment_info = (isset($nasa_opt['show_comment_info']) && $nasa_opt['show_comment_info']) ? true : false; $show_readmore = (!isset($nasa_opt['show_readmore_blog']) || $nasa_opt['show_readmore_blog']) ? true : false; $show_desc_blog = (!isset($nasa_opt['show_desc_blog']) || $nasa_opt['show_desc_blog']) ? true : false;
$k = 0; while (have_posts()) : the_post();
$allowed_html = array( 'strong' => array() );
$postId = get_the_ID(); $title = get_the_title(); $link = get_the_permalink();
if ($show_author_info) { $author = get_the_author(); $author_id = get_the_author_meta('ID'); $link_author = get_author_posts_url($author_id); }
if ($show_date_info) { $day = get_the_date('d'); $month = get_the_date('m'); $year = get_the_date('Y'); $link_date = get_day_link($year, $month, $day); $date_post = get_the_date(); } if (!isset($nasa_opt['blog_type']) || $nasa_opt['blog_type'] == 'masonry-isotope') : $file = ELESSI_CHILD_PATH . '/includes/nasa-blog-masonry-isotope.php'; include is_file($file) ? $file : ELESSI_THEME_PATH . '/includes/nasa-blog-masonry-isotope.php'; elseif ($nasa_opt['blog_type'] == 'blog-grid') : $file = ELESSI_CHILD_PATH . '/includes/nasa-blog-grid.php'; include is_file($file) ? $file : ELESSI_THEME_PATH . '/includes/nasa-blog-grid.php'; elseif ($nasa_opt['blog_type'] == 'blog-standard') : $file = ELESSI_CHILD_PATH . '/includes/nasa-blog-standard.php'; include is_file($file) ? $file : ELESSI_THEME_PATH . '/includes/nasa-blog-standard.php'; elseif ($nasa_opt['blog_type'] == 'blog-list') : $file = ELESSI_CHILD_PATH . '/includes/nasa-blog-list.php'; include is_file($file) ? $file : ELESSI_THEME_PATH . '/includes/nasa-blog-list.php'; endif; $k++; endwhile;
echo (!isset($nasa_opt['blog_type']) || in_array($nasa_opt['blog_type'], array('masonry-isotope', 'blog-grid'))) ? '</ul>' : ''; ?>
<div class="large-12 columns navigation-container nasa-pagination nasa-blog-paging style-2 text-center"> <?php echo paginate_links(array( 'prev_text' => '<svg width="35" height="35" viewBox="0 0 32 32" fill="currentColor"><path d="M12.792 15.233l-0.754 0.754 6.035 6.035 0.754-0.754-5.281-5.281 5.256-5.256-0.754-0.754-3.013 3.013z" /></svg>', 'next_text' => '<svg width="35" height="35" viewBox="0 0 32 32" fill="currentColor"><path d="M19.159 16.767l0.754-0.754-6.035-6.035-0.754 0.754 5.281 5.281-5.256 5.256 0.754 0.754 3.013-3.013z" /></svg>', 'type' => 'list', 'end_size' => 1, 'mid_size' => 1 )); ?> </div> <?php wp_reset_postdata();
|