File manager - Edit - /home/xfekoga/rooftopcleaners/wp-includes/widgets/functions-portfolio.php.tar
Back
home/xfekoga/rooftopcleaners/wp-content/themes/roofy/admin/functions-portfolio.php 0000644 00000005467 15174423773 0024723 0 ustar 00 <?php // For single portfolio posts. function roofy_portfolio_item__short_description() { if (has_excerpt()) { ?> <p> <?php echo get_the_excerpt(); ?> </p> <?php } } function roofy_portfolio_item__feat_img($linked_url = "") { if (! empty($linked_url)) { $image_big = $linked_url; ?> <figure class="wp-caption aligncenter"> <a href="<?php echo esc_url($image_big); ?>"> <?php the_post_thumbnail('roofy_image_size_7'); ?> </a> <?php if (has_excerpt()) { ?> <figcaption class="wp-caption-text"> <?php echo get_the_excerpt(); ?> </figcaption> <?php } ?> </figure> <?php } else { if (has_post_thumbnail()) { ?> <p> <?php the_post_thumbnail('roofy_image_size_7'); ?> </p> <?php } } } function roofy_portfolio_item__format_image() { if (has_post_thumbnail()) { $image_big = ""; $feat_img_id = get_post_thumbnail_id(); $image_big_width_cropped = wp_get_attachment_image_src($feat_img_id, 'roofy_image_size_7'); // magnific-popup-width if ($image_big_width_cropped[1] > $image_big_width_cropped[2]) { $image_big = $image_big_width_cropped[0]; } else { $image_big_height_cropped = wp_get_attachment_image_src($feat_img_id, 'roofy_image_size_8'); // magnific-popup-height $image_big = $image_big_height_cropped[0]; } roofy_portfolio_item__feat_img($linked_url = $image_big); } } function roofy_portfolio_item__format_link() { $direct_url = roofy_core_featured_media__url(); if (! empty($direct_url)) { $new_tab = roofy_core_featured_media__new_tab(); ?> <p> <a class="button" <?php if ($new_tab != false) { echo 'target="_blank"'; } ?> href="<?php echo esc_url($direct_url); ?>"> <?php esc_html_e('Go To Link', 'roofy'); ?> </a> </p> <?php } } function roofy_portfolio_item__format_audio_video() { $browser_address_url = roofy_core_featured_media__url(); if (! empty($browser_address_url)) { echo roofy_iframe_from_xml($browser_address_url); } } function roofy_portfolio_item__format_chooser() { if (is_singular('portfolio')) { if (has_post_format('audio') || has_post_format('video')) { roofy_portfolio_item__format_audio_video(); roofy_portfolio_item__short_description(); } elseif (has_post_format('link')) { roofy_portfolio_item__format_link(); roofy_portfolio_item__short_description(); roofy_portfolio_item__feat_img(); } elseif (has_post_format('image')) { roofy_portfolio_item__format_image(); } elseif (has_post_format('gallery')) { roofy_portfolio_item__short_description(); } } } ?>