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