-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpage-2.php
More file actions
62 lines (47 loc) · 2.07 KB
/
page-2.php
File metadata and controls
62 lines (47 loc) · 2.07 KB
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
<?php
get_header(); ?>
<div class='ph-layout-2 ph-list ph-layout-2-profile'>
<?php
pluginhunt_OutputSlider('post');
pluginhunt_Globals();
?>
<div class='container'>
<div class='post-wrapper'>
<div class='col-md-2 discuss-sidebar hide'>
<?php dynamic_sidebar('ph-home-sidebar'); ?>
</div>
<div class='col-md-12 page-2'>
<?php
// Start the Loop.
while ( have_posts() ) : the_post();
// Include the page content template.
get_template_part( 'content', 'page' );
endwhile;
?>
<div class='disclaimer'><?php echo of_get_option('ph_hunt_disclaimer'); ?></div>
</div>
<div class='col-md-3 discussion-collections hide' style="margin-top:52px">
<?php if(!is_user_logged_in()){ ?>
<div class='sign-up-cta'>
<h3 class='section--heading'><?php echo of_get_option('ph_logged_out_tit'); ?></h3>
<h4><?php echo of_get_option('ph_logged_out_sub'); ?></h4>
<div class='ph_socials'>
<div class='ph-join'>
<div class='ph-soc-block'>
<ul class='ps-main'>
<li class='tw ph-sm'><a href="<?php echo wp_login_url(); ?>?loginTwitter=1&redirect=<?php echo $surl;?>" onclick="window.location = '<?php echo wp_login_url(); ?>?loginTwitter=1&redirect='+window.location.href; return false;">
<i class="fa fa-twitter"></i><?php _e('Log in to vote','pluginhunt'); ?></a></li>
<br/><li class='fb ph-sm'><a href="<?php echo wp_login_url(); ?>?loginFacebook=1&redirect=<?php echo $surl;?>" onclick="window.location = '<?php echo wp_login_url(); ?>?loginFacebook=1&redirect='+window.location.href; return false;">
<i class="fa fa-facebook"></i><?php _e('Log in to vote','pluginhunt'); ?></a></li>
</ul>
</div>
</div>
</div>
<div style="clear:both"></div>
</div> <!-- end sign up CTA -->
<?php } ?>
<?php get_sidebar('right') ?>
</div>
</div>
<?php
get_footer();