This repository was archived by the owner on May 6, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathcontent-template-portfolio-fullwidth.php
More file actions
106 lines (88 loc) · 2.62 KB
/
content-template-portfolio-fullwidth.php
File metadata and controls
106 lines (88 loc) · 2.62 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
<?php
/**
* The content for the fullwidth portfolio template.
*
* @package Bricks
* @link https://themebeans.com/themes/bricks
*/
// PULL PAGINATION FROM CUSTOMIZATION
$portfolio_posts_count = get_theme_mod( 'portfolio_posts_count' );
// PULL PAGINATION FROM READING SETTINGS
$paged = 1;
if ( get_query_var( 'paged' ) ) {
$paged = get_query_var( 'paged' );
}
if ( get_query_var( 'page' ) ) {
$paged = get_query_var( 'page' );
}
// GET THE LOOP ORDERBY & META_KAY VARIABLES VIA THEME CUSTOMIZER
$orderby = get_theme_mod( 'portfolio_loop_orderby' );
// LOOP ORDERBY VARIABLE
if ( $orderby != '' ) {
switch ( $orderby ) {
case 'date':
$order = 'DSC';
$orderby = 'date';
$meta_key = '';
break;
case 'rand':
$order = 'DSC';
$orderby = 'rand';
$meta_key = '';
break;
case 'menu_order':
$order = 'ASC';
$orderby = 'menu_order';
$meta_key = '';
break;
case 'view_count':
$order = 'DSC';
$orderby = 'meta_value_num';
$meta_key = 'post_views_count';
break;
}
}
$args = array(
'post_type' => 'portfolio',
'order' => $order,
'orderby' => $orderby,
'paged' => $paged,
'meta_key' => $meta_key,
'posts_per_page' => 14,
);
query_posts( $args );
if ( have_posts() ) :
while ( have_posts() ) :
the_post();
// GENERATE TERMS FOR FILTER PORTFOLIO TEMPLATE
$terms = get_the_terms( $post->ID, 'portfolio_category' );
$term_list = null;
if ( is_array( $terms ) ) {
foreach ( $terms as $term ) {
$term_list .= $term->term_id;
$term_list .= ' '; }
}
if ( has_post_thumbnail() ) { ?>
<article id="post-<?php the_ID(); ?>" class="project <?php echo esc_html( $term_list ); ?>">
<a title="<?php printf( __( 'Permanent Link to %s', 'bricks' ), get_the_title() ); ?>" href="<?php the_permalink(); ?>">
<?php $feat_image = wp_get_attachment_url( get_post_thumbnail_id( $post->ID ), 'port-full' ); ?>
<img src="
<?php
echo get_template_directory_uri();
echo '/assets/images/blank.gif';
?>
" data-src="<?php echo esc_html( $feat_image ); ?>" title="<?php printf( __( 'Permanent Link to %s', 'bricks' ), get_the_title() ); ?>"/>
<noscript>
<img src="<?php echo esc_html( $feat_image ); ?>" title="<?php printf( __( 'Permanent Link to %s', 'bricks' ), get_the_title() ); ?>"/>
</noscript>
<?php if ( get_theme_mod( 'slide_template_title', true ) == true ) { ?>
<div class="overlay fadein">
<h1><?php the_title(); ?></h1>
</div>
<?php } //END slide_template_title ?>
</a>
</article>
<?php } //END if ( has_post_thumbnail() ) ?>
<?php
endwhile;
endif;