%PDF- %PDF-
Direktori : /home/eirtvhdf/makkitrust.org/wp-content/plugins/trx_addons/components/cpt/portfolio/ |
Current File : /home/eirtvhdf/makkitrust.org/wp-content/plugins/trx_addons/components/cpt/portfolio/tpl.single.php |
<?php /** * The template to display the portfolio single page * * @package WordPress * @subpackage ThemeREX Addons * @since v1.5 */ global $TRX_ADDONS_STORAGE; get_header(); while ( have_posts() ) { the_post(); ?> <article id="post-<?php the_ID(); ?>" <?php post_class( 'portfolio_page itemscope' ); trx_addons_seo_snippets('', 'Article'); ?>> <?php do_action('trx_addons_action_before_article', 'portfolio.single'); ?> <section class="portfolio_page_header"> <?php // Image if ( !trx_addons_sc_layouts_showed('featured') && has_post_thumbnail() ) { ?><div class="portfolio_page_featured"><?php the_post_thumbnail( trx_addons_get_thumb_size('huge'), trx_addons_seo_image_params(array( 'alt' => get_the_title() )) ); ?></div><?php } // Title if ( !trx_addons_sc_layouts_showed('title') ) { ?><h2 class="portfolio_page_title"><?php the_title(); ?></h2><?php } ?> </section> <?php // Post content ?><section class="portfolio_page_content entry-content"<?php trx_addons_seo_snippets('articleBody'); ?>><?php the_content( ); ?></section><!-- .entry-content --><?php do_action('trx_addons_action_after_article', 'portfolio.single'); ?></article><?php // Related items (select dishes with same category) $taxonomies = array(); $terms = get_the_terms(get_the_ID(), TRX_ADDONS_CPT_PORTFOLIO_TAXONOMY); if ( !empty( $terms ) ) { $taxonomies[TRX_ADDONS_CPT_PORTFOLIO_TAXONOMY] = array(); foreach( $terms as $term ) $taxonomies[TRX_ADDONS_CPT_PORTFOLIO_TAXONOMY][] = $term->term_id; } trx_addons_get_template_part('templates/tpl.posts-related.php', 'trx_addons_args_related', apply_filters('trx_addons_filter_args_related', array( 'class' => 'portfolio_page_related sc_portfolio_default', 'posts_per_page' => 3, 'columns' => 3, 'template' => TRX_ADDONS_PLUGIN_CPT . 'portfolio/tpl.default-item.php', 'template_args_name' => 'trx_addons_args_sc_portfolio', 'post_type' => TRX_ADDONS_CPT_PORTFOLIO_PT, 'taxonomies' => $taxonomies ) ) ); // If comments are open or we have at least one comment, load up the comment template. if ( comments_open() || get_comments_number() ) { comments_template(); } } get_footer(); ?>