author-bio.php
1 year ago
blog-display.php
1 year ago
customizer.js
1 year ago
customizer.php
1 year ago
featured-images-fallback.php
1 year ago
featured-images.php
1 year ago
post-details.php
1 year ago
blog-display.php
319 lines
| 1 | <?php |
| 2 | /** |
| 3 | * Theme Tools: the functions to display Content or Excerpt in a theme. |
| 4 | * |
| 5 | * @package automattic/jetpack |
| 6 | */ |
| 7 | |
| 8 | /** |
| 9 | * If the theme doesn't support 'jetpack-content-options', don't continue. |
| 10 | */ |
| 11 | if ( ! current_theme_supports( 'jetpack-content-options' ) ) { |
| 12 | return; |
| 13 | } |
| 14 | |
| 15 | /** |
| 16 | * Get the Blog Display setting. |
| 17 | * If theme is using both 'Content' and 'Excerpt' then this setting will be called 'Mixed'. |
| 18 | */ |
| 19 | $options = get_theme_support( 'jetpack-content-options' ); |
| 20 | $blog_display = ( ! empty( $options[0]['blog-display'] ) ) ? $options[0]['blog-display'] : null; |
| 21 | $blog_display = preg_grep( '/^(content|excerpt)$/', (array) $blog_display ); |
| 22 | sort( $blog_display ); |
| 23 | $blog_display = implode( ', ', $blog_display ); |
| 24 | $blog_display = ( 'content, excerpt' === $blog_display ) ? 'mixed' : $blog_display; |
| 25 | |
| 26 | /** |
| 27 | * If the theme doesn't support 'jetpack-content-options[ 'blog-display' ]', don't continue. |
| 28 | */ |
| 29 | if ( ! in_array( $blog_display, array( 'content', 'excerpt', 'mixed' ), true ) ) { |
| 30 | return; |
| 31 | } |
| 32 | |
| 33 | if ( ! function_exists( 'jetpack_blog_display_custom_excerpt' ) ) { |
| 34 | |
| 35 | /** |
| 36 | * Apply Content filters. |
| 37 | * |
| 38 | * @deprecated 13.9 Moved to Classic Theme Helper package. |
| 39 | * @since 9.7.0 Deprecated $content parameter. |
| 40 | * |
| 41 | * @param string $content Post content. Deprecated. |
| 42 | */ |
| 43 | function jetpack_blog_display_custom_excerpt( $content = '' ) { |
| 44 | _deprecated_function( __FUNCTION__, 'jetpack-13.9' ); |
| 45 | if ( ! empty( $content ) ) { |
| 46 | _doing_it_wrong( |
| 47 | 'jetpack_blog_display_custom_excerpt', |
| 48 | esc_html__( 'You do not need to pass a $content parameter anymore.', 'jetpack' ), |
| 49 | 'jetpack-9.7.0' |
| 50 | ); |
| 51 | } |
| 52 | |
| 53 | $post = get_post(); |
| 54 | if ( empty( $post ) ) { |
| 55 | return ''; |
| 56 | } |
| 57 | |
| 58 | if ( empty( $post->post_excerpt ) ) { |
| 59 | $text = strip_shortcodes( $post->post_content ); |
| 60 | $text = str_replace( ']]>', ']]>', $text ); |
| 61 | $text = wp_strip_all_tags( $text ); |
| 62 | /** This filter is documented in wp-includes/formatting.php */ |
| 63 | $excerpt_length = apply_filters( 'excerpt_length', 55 ); |
| 64 | /** This filter is documented in wp-includes/formatting.php */ |
| 65 | $excerpt_more = apply_filters( 'excerpt_more', ' [...]' ); |
| 66 | |
| 67 | /* |
| 68 | * translators: If your word count is based on single characters (e.g. East Asian characters), |
| 69 | * enter 'characters_excluding_spaces' or 'characters_including_spaces'. Otherwise, enter 'words'. |
| 70 | * Do not translate into your own language. |
| 71 | */ |
| 72 | if ( strpos( _x( 'words', 'Word count type. Do not translate!', 'jetpack' ), 'characters' ) === 0 && preg_match( '/^utf\-?8$/i', get_option( 'blog_charset' ) ) ) { |
| 73 | $text = trim( preg_replace( "/[\n\r\t ]+/", ' ', $text ), ' ' ); |
| 74 | preg_match_all( '/./u', $text, $words ); |
| 75 | $words = array_slice( $words[0], 0, $excerpt_length + 1 ); |
| 76 | $sep = ''; |
| 77 | } else { |
| 78 | $words = preg_split( "/[\n\r\t ]+/", $text, $excerpt_length + 1, PREG_SPLIT_NO_EMPTY ); |
| 79 | $sep = ' '; |
| 80 | } |
| 81 | |
| 82 | if ( count( $words ) > $excerpt_length ) { |
| 83 | array_pop( $words ); |
| 84 | $text = implode( $sep, $words ); |
| 85 | $text = $text . $excerpt_more; |
| 86 | } else { |
| 87 | $text = implode( $sep, $words ); |
| 88 | } |
| 89 | } else { |
| 90 | $text = wp_kses_post( $post->post_excerpt ); |
| 91 | } |
| 92 | return sprintf( '<p>%s</p>', $text ); |
| 93 | } |
| 94 | |
| 95 | } |
| 96 | |
| 97 | if ( ! function_exists( 'jetpack_the_content_to_the_excerptt' ) ) { |
| 98 | |
| 99 | /** |
| 100 | * Display Excerpt instead of Content. |
| 101 | * |
| 102 | * @deprecated 13.9 Moved to Classic Theme Helper package. |
| 103 | * |
| 104 | * @param string $content Post content. |
| 105 | */ |
| 106 | function jetpack_the_content_to_the_excerpt( $content ) { |
| 107 | _deprecated_function( __FUNCTION__, 'jetpack-13.9' ); |
| 108 | if ( ( is_home() || is_archive() ) && ! is_post_type_archive( array( 'jetpack-testimonial', 'jetpack-portfolio', 'product' ) ) ) { |
| 109 | if ( post_password_required() ) { |
| 110 | $excerpt = sprintf( '<p>%s</p>', esc_html__( 'There is no excerpt because this is a protected post.', 'jetpack' ) ); |
| 111 | } else { |
| 112 | $excerpt = jetpack_blog_display_custom_excerpt(); |
| 113 | } |
| 114 | } |
| 115 | if ( empty( $excerpt ) ) { |
| 116 | return $content; |
| 117 | } else { |
| 118 | return $excerpt; |
| 119 | } |
| 120 | } |
| 121 | |
| 122 | } |
| 123 | |
| 124 | if ( ! function_exists( 'jetpack_the_excerpt_to_the_content' ) ) { |
| 125 | |
| 126 | /** |
| 127 | * Display Content instead of Excerpt. |
| 128 | * |
| 129 | * @deprecated 13.9 Moved to Classic Theme Helper package. |
| 130 | * |
| 131 | * @param string $content The post excerpt. |
| 132 | */ |
| 133 | function jetpack_the_excerpt_to_the_content( $content ) { |
| 134 | _deprecated_function( __FUNCTION__, 'jetpack-13.9' ); |
| 135 | if ( ( is_home() || is_archive() ) && ! is_post_type_archive( array( 'jetpack-testimonial', 'jetpack-portfolio', 'product' ) ) ) { |
| 136 | ob_start(); |
| 137 | the_content( |
| 138 | sprintf( |
| 139 | wp_kses( |
| 140 | /* translators: %s: Name of current post. Only visible to screen readers */ |
| 141 | __( 'Continue reading<span class="screen-reader-text"> "%s"</span>', 'jetpack' ), |
| 142 | array( |
| 143 | 'span' => array( |
| 144 | 'class' => array(), |
| 145 | ), |
| 146 | ) |
| 147 | ), |
| 148 | get_the_title() |
| 149 | ) |
| 150 | ); |
| 151 | $content = ob_get_clean(); |
| 152 | } |
| 153 | return $content; |
| 154 | } |
| 155 | |
| 156 | } |
| 157 | |
| 158 | if ( ! function_exists( 'jetpack_the_content_customizer' ) ) { |
| 159 | |
| 160 | /** |
| 161 | * Display both Content and Excerpt instead of Content in the Customizer so live preview can switch between them. |
| 162 | * |
| 163 | * @deprecated 13.9 Moved to Classic Theme Helper package. |
| 164 | * @param string $content The post content. |
| 165 | */ |
| 166 | function jetpack_the_content_customizer( $content ) { |
| 167 | _deprecated_function( __FUNCTION__, 'jetpack-13.9' ); |
| 168 | $class = jetpack_the_content_customizer_class(); |
| 169 | if ( ( is_home() || is_archive() ) && ! is_post_type_archive( array( 'jetpack-testimonial', 'jetpack-portfolio', 'product' ) ) ) { |
| 170 | if ( post_password_required() ) { |
| 171 | $excerpt = sprintf( '<p>%s</p>', esc_html__( 'There is no excerpt because this is a protected post.', 'jetpack' ) ); |
| 172 | } else { |
| 173 | $excerpt = jetpack_blog_display_custom_excerpt(); |
| 174 | } |
| 175 | } |
| 176 | if ( empty( $excerpt ) ) { |
| 177 | return $content; |
| 178 | } else { |
| 179 | return sprintf( '<div class="jetpack-blog-display %s jetpack-the-content">%s</div><div class="jetpack-blog-display %s jetpack-the-excerpt">%s</div>', $class, $content, $class, $excerpt ); |
| 180 | } |
| 181 | } |
| 182 | |
| 183 | } |
| 184 | |
| 185 | if ( ! function_exists( 'jetpack_the_excerpt_customizer' ) ) { |
| 186 | |
| 187 | /** |
| 188 | * Display both Content and Excerpt instead of Excerpt in the Customizer so live preview can switch between them. |
| 189 | * |
| 190 | * @deprecated 13.9 Moved to Classic Theme Helper package. |
| 191 | * @param string $excerpt The post excerpt. |
| 192 | */ |
| 193 | function jetpack_the_excerpt_customizer( $excerpt ) { |
| 194 | _deprecated_function( __FUNCTION__, 'jetpack-13.9' ); |
| 195 | if ( ( is_home() || is_archive() ) && ! is_post_type_archive( array( 'jetpack-testimonial', 'jetpack-portfolio', 'product' ) ) ) { |
| 196 | ob_start(); |
| 197 | the_content( |
| 198 | sprintf( |
| 199 | wp_kses( |
| 200 | /* translators: %s: Name of current post. Only visible to screen readers */ |
| 201 | __( 'Continue reading<span class="screen-reader-text"> "%s"</span>', 'jetpack' ), |
| 202 | array( |
| 203 | 'span' => array( |
| 204 | 'class' => array(), |
| 205 | ), |
| 206 | ) |
| 207 | ), |
| 208 | get_the_title() |
| 209 | ) |
| 210 | ); |
| 211 | $content = ob_get_clean(); |
| 212 | } |
| 213 | if ( empty( $content ) ) { |
| 214 | return $excerpt; |
| 215 | } else { |
| 216 | return sprintf( '<div class="jetpack-blog-display jetpack-the-content">%s</div><div class="jetpack-blog-display jetpack-the-excerpt">%s</div>', $content, $excerpt ); |
| 217 | } |
| 218 | } |
| 219 | |
| 220 | } |
| 221 | |
| 222 | if ( ! function_exists( 'jetpack_the_excerpt_mixed_customizer' ) ) { |
| 223 | |
| 224 | /** |
| 225 | * Display Content instead of Excerpt in the Customizer when theme uses a 'Mixed' display. |
| 226 | * |
| 227 | * @deprecated 13.9 Moved to Classic Theme Helper package. |
| 228 | * @param string $content The post excerpt. |
| 229 | */ |
| 230 | function jetpack_the_excerpt_mixed_customizer( $content ) { |
| 231 | _deprecated_function( __FUNCTION__, 'jetpack-13.9' ); |
| 232 | if ( ( is_home() || is_archive() ) && ! is_post_type_archive( array( 'jetpack-testimonial', 'jetpack-portfolio', 'product' ) ) ) { |
| 233 | jetpack_the_content_customizer_class( 'output-the-excerpt' ); |
| 234 | ob_start(); |
| 235 | the_content(); |
| 236 | $content = ob_get_clean(); |
| 237 | } |
| 238 | return $content; |
| 239 | } |
| 240 | |
| 241 | } |
| 242 | |
| 243 | if ( ! function_exists( 'jetpack_the_content_customizer_class' ) ) { |
| 244 | |
| 245 | /** |
| 246 | * Returns a class value, `output-the-content` by default. |
| 247 | * Used for themes with a 'Mixed' Blog Display so we can tell which output is by default. |
| 248 | * |
| 249 | * @deprecated 13.9 Moved to Classic Theme Helper package. |
| 250 | * @param string|null $new_class CSS class added to content container. |
| 251 | */ |
| 252 | function jetpack_the_content_customizer_class( $new_class = null ) { |
| 253 | _deprecated_function( __FUNCTION__, 'jetpack-13.9' ); |
| 254 | static $class; |
| 255 | if ( isset( $new_class ) ) { |
| 256 | // Assign a new class and return. |
| 257 | $class = $new_class; |
| 258 | } elseif ( isset( $class ) ) { |
| 259 | // Reset the class after getting value. |
| 260 | $prev_class = $class; |
| 261 | $class = null; |
| 262 | return $prev_class; |
| 263 | } else { |
| 264 | // Return default class value. |
| 265 | return 'output-the-content'; |
| 266 | } |
| 267 | } |
| 268 | |
| 269 | } |
| 270 | |
| 271 | if ( is_customize_preview() ) { |
| 272 | /* |
| 273 | * Display Content and Excerpt if the default Blog Display is 'Content' |
| 274 | * and we are in the Customizer. |
| 275 | */ |
| 276 | if ( 'content' === $blog_display ) { |
| 277 | add_filter( 'the_content', 'jetpack_the_content_customizer' ); |
| 278 | } |
| 279 | |
| 280 | /* |
| 281 | * Display Content and Excerpt if the default Blog Display is 'Excerpt' |
| 282 | * and we are in the Customizer. |
| 283 | */ |
| 284 | if ( 'excerpt' === $blog_display ) { |
| 285 | add_filter( 'the_excerpt', 'jetpack_the_excerpt_customizer' ); |
| 286 | } |
| 287 | |
| 288 | /* |
| 289 | * Display Content and Excerpt if the default Blog Display is 'Mixed' |
| 290 | * and we are in the Customizer. |
| 291 | */ |
| 292 | if ( 'mixed' === $blog_display ) { |
| 293 | add_filter( 'the_content', 'jetpack_the_content_customizer' ); |
| 294 | add_filter( 'the_excerpt', 'jetpack_the_excerpt_mixed_customizer' ); |
| 295 | } |
| 296 | } else { |
| 297 | $display_option = get_option( 'jetpack_content_blog_display', $blog_display ); |
| 298 | |
| 299 | /* |
| 300 | * Display Excerpt if the default Blog Display is 'Content' |
| 301 | * or default Blog Display is 'Mixed' |
| 302 | * and the Option picked is 'Post Excerpt' |
| 303 | * and we aren't in the Customizer. |
| 304 | */ |
| 305 | if ( ( 'content' === $blog_display || 'mixed' === $blog_display ) && 'excerpt' === $display_option ) { |
| 306 | add_filter( 'the_content', 'jetpack_the_content_to_the_excerpt' ); |
| 307 | } |
| 308 | |
| 309 | /* |
| 310 | * Display Content if the default Blog Display is 'Excerpt' |
| 311 | * or default Blog Display is 'Mixed' |
| 312 | * and the Option picked is 'Full Post' |
| 313 | * and we aren't in the Customizer. |
| 314 | */ |
| 315 | if ( ( 'excerpt' === $blog_display || 'mixed' === $blog_display ) && 'content' === $display_option ) { |
| 316 | add_filter( 'the_excerpt', 'jetpack_the_excerpt_to_the_content' ); |
| 317 | } |
| 318 | } |
| 319 |