forked from corgus/eas
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapprove_artists.php
More file actions
37 lines (30 loc) · 848 Bytes
/
approve_artists.php
File metadata and controls
37 lines (30 loc) · 848 Bytes
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
<?php
/*
Template Name: Approve Artists
*/
?>
<?php get_header(); ?>
<?php roots_content_before(); ?>
<div id="content" class="<?php echo CONTAINER_CLASSES; ?>">
<?php roots_main_before(); ?>
<div id="main" class="<?php echo FULLWIDTH_CLASSES; ?>" role="main">
<?php if (eas_user_is_admin()) {
?>
<?php roots_loop_before(); ?>
<?php get_template_part('loop', 'page'); ?>
<?php roots_loop_after(); ?>
<?php eas_page_links(); ?>
<ul class="users">
<?php
eas_unapproved_artists(get_query_var('paged'));
?>
</ul>
<?php eas_page_links(); ?>
<?php
}
?>
</div><!-- /#main -->
<?php roots_main_after(); ?>
</div><!-- /#content -->
<?php roots_content_after(); ?>
<?php get_footer(); ?>