PluginProbe
Jetpack – WP Security, Backup, Speed, & Growth / 11.7
Jetpack – WP Security, Backup, Speed, & Growth v11.7
16.2-beta 12.0.3 12.1.3 12.2.3 12.3.2 12.4.2 12.5.2 12.6.4 12.7.3 12.8.3 12.9.5 13.0.2 13.1.5 13.2.4 13.3.3 13.4.5 13.5.2 13.6.2 13.7.2 13.8.3 13.9.2 14.0.1 14.1.1 14.2.2 14.3.1 All 501 releases
jetpack / modules / theme-tools / content-options.php

content-options.php in Jetpack – WP Security, Backup, Speed, & Growth 11.7, at modules/theme-tools/content-options.php

154 lines 7.1 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 /**
3 * Jetpack Compatibility File
4 * See: https://jetpack.com/
5 *
6 * @package automattic/jetpack
7 */
8
9 /**
10 * Content Options.
11 *
12 * This feature will only be activated for themes that declare their support.
13 * This can be done by adding code similar to the following during the
14 * 'after_setup_theme' action:
15 *
16 add_theme_support( 'jetpack-content-options', array(
17 'blog-display' => 'content', // the default setting of the theme: 'content', 'excerpt' or array( 'content', 'excerpt' ) for themes mixing both display.
18 'author-bio' => true, // display or not the author bio: true or false.
19 'author-bio-default' => false, // the default setting of the author bio, if it's being displayed or not: true or false (only required if false).
20 'masonry' => '.site-main', // a CSS selector matching the elements that triggers a masonry refresh if the theme is using a masonry layout.
21 'post-details' => array(
22 'stylesheet' => 'themeslug-style', // name of the theme's stylesheet.
23 'date' => '.posted-on', // a CSS selector matching the elements that display the post date.
24 'categories' => '.cat-links', // a CSS selector matching the elements that display the post categories.
25 'tags' => '.tags-links', // a CSS selector matching the elements that display the post tags.
26 'author' => '.byline', // a CSS selector matching the elements that display the post author.
27 'comment' => '.comments-link', // a CSS selector matching the elements that display the comment link.
28 ),
29 'featured-images' => array(
30 'archive' => true, // enable or not the featured image check for archive pages: true or false.
31 'archive-default' => false, // the default setting of the featured image on archive pages, if it's being displayed or not: true or false (only required if false).
32 'post' => true, // enable or not the featured image check for single posts: true or false.
33 'post-default' => false, // the default setting of the featured image on single posts, if it's being displayed or not: true or false (only required if false).
34 'page' => true, // enable or not the featured image check for single pages: true or false.
35 'page-default' => false, // the default setting of the featured image on single pages, if it's being displayed or not: true or false (only required if false).
36 'portfolio' => true, // enable or not the featured image check for single projects: true or false.
37 'portfolio-default' => false, // the default setting of the featured image on single projects, if it's being displayed or not: true or false (only required if false).
38 'fallback' => true, // enable or not the featured image fallback: true or false.
39 'fallback-default' => true, // the default setting for featured image fallbacks: true or false (only required if false)
40 ),
41 ) );
42 */
43
44 /**
45 * Activate the Content Options plugin.
46 *
47 * @uses current_theme_supports()
48 */
49 function jetpack_content_options_init() {
50 // If the theme doesn't support 'jetpack-content-options', don't continue.
51 if ( ! current_theme_supports( 'jetpack-content-options' ) ) {
52 return;
53 }
54
55 // Load the Customizer options.
56 require __DIR__ . '/content-options/customizer.php';
57
58 // Load Blog Display function.
59 require __DIR__ . '/content-options/blog-display.php';
60
61 // Load Author Bio function.
62 require __DIR__ . '/content-options/author-bio.php';
63
64 // Load Post Details function.
65 require __DIR__ . '/content-options/post-details.php';
66
67 // Load Featured Images function.
68 if ( jetpack_featured_images_should_load() ) {
69 require __DIR__ . '/content-options/featured-images.php';
70 }
71
72 // Load Featured Images Fallback function.
73 if ( jetpack_featured_images_fallback_should_load() ) {
74 require __DIR__ . '/content-options/featured-images-fallback.php';
75 }
76 }
77 add_action( 'init', 'jetpack_content_options_init' );
78
79 /**
80 * Get featured images settings using the jetpack-content-options theme support.
81 */
82 function jetpack_featured_images_get_settings() {
83 $options = get_theme_support( 'jetpack-content-options' );
84
85 $featured_images = ( ! empty( $options[0]['featured-images'] ) ) ? $options[0]['featured-images'] : null;
86
87 $settings = array(
88 'archive' => ( ! empty( $featured_images['archive'] ) ) ? $featured_images['archive'] : null,
89 'post' => ( ! empty( $featured_images['post'] ) ) ? $featured_images['post'] : null,
90 'page' => ( ! empty( $featured_images['page'] ) ) ? $featured_images['page'] : null,
91 'portfolio' => ( ! empty( $featured_images['portfolio'] ) ) ? $featured_images['portfolio'] : null,
92 'archive-default' => ( isset( $featured_images['archive-default'] ) && false === $featured_images['archive-default'] ) ? '' : 1,
93 'post-default' => ( isset( $featured_images['post-default'] ) && false === $featured_images['post-default'] ) ? '' : 1,
94 'page-default' => ( isset( $featured_images['page-default'] ) && false === $featured_images['page-default'] ) ? '' : 1,
95 'portfolio-default' => ( isset( $featured_images['portfolio-default'] ) && false === $featured_images['portfolio-default'] ) ? '' : 1,
96 'fallback' => ( ! empty( $featured_images['fallback'] ) ) ? $featured_images['fallback'] : null,
97 'fallback-default' => ( isset( $featured_images['fallback-default'] ) && false === $featured_images['fallback-default'] ) ? '' : 1,
98 );
99
100 $settings = array_merge(
101 $settings,
102 array(
103 'archive-option' => get_option( 'jetpack_content_featured_images_archive', $settings['archive-default'] ),
104 'post-option' => get_option( 'jetpack_content_featured_images_post', $settings['post-default'] ),
105 'page-option' => get_option( 'jetpack_content_featured_images_page', $settings['page-default'] ),
106 'portfolio-option' => get_option( 'jetpack_content_featured_images_portfolio', $settings['portfolio-default'] ),
107 'fallback-option' => get_option( 'jetpack_content_featured_images_fallback', $settings['fallback-default'] ),
108 )
109 );
110
111 return $settings;
112 }
113
114 /**
115 * Determine if the Jetpack Featured Images should be load.
116 */
117 function jetpack_featured_images_should_load() {
118 // If the theme doesn't support post thumbnails, don't continue.
119 if ( ! current_theme_supports( 'post-thumbnails' ) ) {
120 return false;
121 }
122
123 $opts = jetpack_featured_images_get_settings();
124
125 // If the theme doesn't support archive, post and page or if all the options are ticked and we aren't in the customizer, don't continue.
126 if (
127 ( true !== $opts['archive'] && true !== $opts['post'] && true !== $opts['page'] )
128 || ( 1 === $opts['archive-option'] && 1 === $opts['post-option'] && 1 === $opts['page-option'] && ! is_customize_preview() )
129 ) {
130 return false;
131 }
132
133 return true;
134 }
135
136 /**
137 * Determine if the Jetpack Featured Images fallback should load.
138 */
139 function jetpack_featured_images_fallback_should_load() {
140 // If the theme doesn't support post thumbnails, don't continue.
141 if ( ! current_theme_supports( 'post-thumbnails' ) ) {
142 return false;
143 }
144
145 $opts = jetpack_featured_images_get_settings();
146
147 // If the theme doesn't support fallback, don't continue.
148 if ( true !== $opts['fallback'] ) {
149 return false;
150 }
151
152 return true;
153 }
154