author-bio.php
4 years ago
blog-display.php
4 years ago
customizer.js
6 years ago
customizer.php
3 years ago
featured-images-fallback.php
4 years ago
featured-images.php
4 years ago
post-details.php
4 years ago
featured-images.php
109 lines
| 1 | <?php |
| 2 | /** |
| 3 | * Theme Tools: functions for Featured Images. |
| 4 | * |
| 5 | * @package automattic/jetpack |
| 6 | */ |
| 7 | |
| 8 | /** |
| 9 | * The function to prevent for Featured Images to be displayed in a theme. |
| 10 | * |
| 11 | * @param array $metadata Post metadata. |
| 12 | * @param int $object_id Post ID. |
| 13 | * @param string $meta_key Metadata key. |
| 14 | */ |
| 15 | function jetpack_featured_images_remove_post_thumbnail( $metadata, $object_id, $meta_key ) { |
| 16 | $opts = jetpack_featured_images_get_settings(); |
| 17 | |
| 18 | /** |
| 19 | * Allow featured images to be displayed at all times for specific CPTs. |
| 20 | * |
| 21 | * @module theme-tools |
| 22 | * |
| 23 | * @since 9.1.0 |
| 24 | * |
| 25 | * @param array $excluded_post_types Array of excluded post types. |
| 26 | */ |
| 27 | $excluded_post_types = apply_filters( |
| 28 | 'jetpack_content_options_featured_image_exclude_cpt', |
| 29 | array( 'jp_pay_product' ) |
| 30 | ); |
| 31 | |
| 32 | // Automatically return metadata for specific post types, when we don't want to hide the Featured Image. |
| 33 | if ( in_array( get_post_type( $object_id ), $excluded_post_types, true ) ) { |
| 34 | return $metadata; |
| 35 | } |
| 36 | |
| 37 | // Return false if the archive option or singular option is unticked. |
| 38 | if ( |
| 39 | ( true === $opts['archive'] |
| 40 | && ( is_home() || is_archive() || is_search() ) |
| 41 | && ! jetpack_is_shop_page() |
| 42 | && ! $opts['archive-option'] |
| 43 | && ( isset( $meta_key ) |
| 44 | && '_thumbnail_id' === $meta_key ) |
| 45 | && in_the_loop() |
| 46 | ) |
| 47 | || ( true === $opts['post'] |
| 48 | && is_single() |
| 49 | && ! jetpack_is_product() |
| 50 | && ! $opts['post-option'] |
| 51 | && ( isset( $meta_key ) |
| 52 | && '_thumbnail_id' === $meta_key ) |
| 53 | && in_the_loop() |
| 54 | ) |
| 55 | || ( true === $opts['page'] |
| 56 | && is_singular() |
| 57 | && is_page() |
| 58 | && ! $opts['page-option'] |
| 59 | && ( isset( $meta_key ) |
| 60 | && '_thumbnail_id' === $meta_key ) |
| 61 | && in_the_loop() |
| 62 | ) |
| 63 | || ( true === $opts['portfolio'] |
| 64 | && post_type_exists( 'jetpack-portfolio' ) |
| 65 | && is_singular( 'jetpack-portfolio' ) |
| 66 | && ! $opts['portfolio-option'] |
| 67 | && ( isset( $meta_key ) |
| 68 | && '_thumbnail_id' === $meta_key ) |
| 69 | && in_the_loop() |
| 70 | ) |
| 71 | ) { |
| 72 | return false; |
| 73 | } else { |
| 74 | return $metadata; |
| 75 | } |
| 76 | } |
| 77 | add_filter( 'get_post_metadata', 'jetpack_featured_images_remove_post_thumbnail', true, 3 ); |
| 78 | |
| 79 | /** |
| 80 | * Check if we are in a WooCommerce Product in order to exclude it from the is_single check. |
| 81 | */ |
| 82 | function jetpack_is_product() { |
| 83 | return ( function_exists( 'is_product' ) ) ? is_product() : false; |
| 84 | } |
| 85 | |
| 86 | /** |
| 87 | * Check if we are in a WooCommerce Shop in order to exclude it from the is_archive check. |
| 88 | */ |
| 89 | function jetpack_is_shop_page() { |
| 90 | // Check if WooCommerce is active first. |
| 91 | if ( ! class_exists( 'WooCommerce' ) ) { |
| 92 | return false; |
| 93 | } |
| 94 | |
| 95 | global $wp_query; |
| 96 | |
| 97 | $front_page_id = get_option( 'page_on_front' ); |
| 98 | $current_page_id = $wp_query->get( 'page_id' ); |
| 99 | $is_static_front_page = 'page' === get_option( 'show_on_front' ); |
| 100 | |
| 101 | if ( $is_static_front_page && $front_page_id === $current_page_id ) { |
| 102 | $is_shop_page = ( wc_get_page_id( 'shop' ) === $current_page_id ) ? true : false; |
| 103 | } else { |
| 104 | $is_shop_page = is_shop(); |
| 105 | } |
| 106 | |
| 107 | return $is_shop_page; |
| 108 | } |
| 109 |