-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathindex.php
48 lines (39 loc) · 954 Bytes
/
index.php
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
<?php get_header(); ?>
<?php jeo_featured(); ?>
<section id="content">
<?php if(!is_paged()) : ?>
<?php
query_posts(array(
'post_type' => 'artist',
'posts_per_page' => 4,
'not_geo_query' => 1,
'meta_query' => array(
array(
'key' => '_jeo_featured',
'value' => 1
)
)
));
if(have_posts() && !get_query_var('city_not_found')) :
?>
<div class="featured-section">
<div class="section-title">
<h2><?php _e('Featured artists', 'arteforadomuseu'); ?></h2>
</div>
<?php get_template_part('loop', 'carousel'); ?>
</div>
<?php
endif;
wp_reset_query();
?>
<?php get_template_part('content', 'popular'); ?>
<?php do_action('afdm_before_content'); ?>
<?php endif; ?>
<div class="child-section">
<div class="section-title">
<h2><?php _e('Latest artworks', 'arteforadomuseu'); ?></h2>
</div>
<?php get_template_part('loop'); ?>
</div>
</section>
<?php get_footer(); ?>