*/ global $post,$canuck_feature_pic_count; $category = esc_html( ( '' === get_post_meta( $post->ID, 'canuck_portfolio_category', true ) ? false : get_post_meta( $post->ID, 'canuck_portfolio_category', true ) ) ); $display_post_content = ( ( '' === get_post_meta( $post->ID, 'canuck_metabox_include_post_content', true ) ? false : true ) ); $display_post_content_title = ( ( '' === get_post_meta( $post->ID, 'canuck_metabox_include_post_content_title', true ) ? false : true ) ); $display_image_caption = ( ( '' === get_post_meta( $post->ID, 'canuck_metabox_include_image_caption', true ) ? false : true ) ); $display_image_description = ( ( '' === get_post_meta( $post->ID, 'canuck_metabox_include_image_description', true ) ? false : true ) ); $canuck_portfolio_type = sanitize_text_field( ( '' === get_post_meta( $post->ID,'canuck_portfolio_type', true ) ? 'grid3' : get_post_meta( $post->ID, 'canuck_portfolio_type', true ) ) ); $include_pinterest_pinit = get_theme_mod( 'canuck_include_pinit' ) ? true : false; $category_id = get_cat_ID( $category ); $args = array( 'category' => $category_id, 'numberposts' => 20, ); $custom_posts = get_posts( $args ); if ( 0 !== $category_id && $custom_posts ) { ?> '; } } elseif ( 'grid3' === $canuck_portfolio_type ) { if ( is_int( ( $canuck_feature_pic_count ) / 3 ) ) { echo '
'; } } elseif ( 'grid4' === $canuck_portfolio_type ) { if ( is_int( ( $canuck_feature_pic_count ) / 4 ) ) { echo '
'; } } elseif ( 'grid5' === $canuck_portfolio_type ) { if ( is_int( ( $canuck_feature_pic_count ) / 5 ) ) { echo '
'; } } }// End foreach(). ?>