PluginProbe
Jetpack – WP Security, Backup, Speed, & Growth / 16.2
Jetpack – WP Security, Backup, Speed, & Growth v16.2
16.3-a.3 16.3-a.1 16.2 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 All 504 releases
← All changes | modules/theme-tools/content-options.php +156 -121 12.9.516.2 View file →
@@ -5,149 +5,184 @@
5 5 *
6 6 * @package automattic/jetpack
7 7 */
8 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 - */
9 +if ( ! defined( 'ABSPATH' ) ) {
10 + exit( 0 );
11 +}
43 12
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;
13 +if ( ! class_exists( '\Automattic\Jetpack\Classic_Theme_Helper\Main' ) ) {
14 +
15 + /**
16 + * Content Options.
17 + *
18 + * This feature will only be activated for themes that declare their support.
19 + * This can be done by adding code similar to the following during the
20 + * 'after_setup_theme' action:
21 + *
22 + add_theme_support( 'jetpack-content-options', array(
23 + 'blog-display' => 'content', // the default setting of the theme: 'content', 'excerpt' or array( 'content', 'excerpt' ) for themes mixing both display.
24 + 'author-bio' => true, // display or not the author bio: true or false.
25 + '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).
26 + 'avatar-default' => true, // display or not the default avatar for the author bio: true or false.
27 + 'masonry' => '.site-main', // a CSS selector matching the elements that triggers a masonry refresh if the theme is using a masonry layout.
28 + 'post-details' => array(
29 + 'stylesheet' => 'themeslug-style', // name of the theme's stylesheet.
30 + 'date' => '.posted-on', // a CSS selector matching the elements that display the post date.
31 + 'categories' => '.cat-links', // a CSS selector matching the elements that display the post categories.
32 + 'tags' => '.tags-links', // a CSS selector matching the elements that display the post tags.
33 + 'author' => '.byline', // a CSS selector matching the elements that display the post author.
34 + 'comment' => '.comments-link', // a CSS selector matching the elements that display the comment link.
35 + ),
36 + 'featured-images' => array(
37 + 'archive' => true, // enable or not the featured image check for archive pages: true or false.
38 + '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).
39 + 'post' => true, // enable or not the featured image check for single posts: true or false.
40 + '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).
41 + 'page' => true, // enable or not the featured image check for single pages: true or false.
42 + '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).
43 + 'portfolio' => true, // enable or not the featured image check for single projects: true or false.
44 + '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).
45 + 'fallback' => true, // enable or not the featured image fallback: true or false.
46 + 'fallback-default' => true, // the default setting for featured image fallbacks: true or false (only required if false)
47 + ),
48 + ) );
49 + */
50 +
51 + if ( ! function_exists( 'jetpack_content_options_init' ) ) {
52 +
53 + /**
54 + * Activate the Content Options plugin.
55 + *
56 + * @deprecated 13.9 Moved to Classic Theme Helper package.
57 + * @uses current_theme_supports()
58 + */
59 + function jetpack_content_options_init() {
60 + _deprecated_function( __FUNCTION__, 'jetpack-13.9' );
61 + // If the theme doesn't support 'jetpack-content-options', don't continue.
62 + if ( ! current_theme_supports( 'jetpack-content-options' ) ) {
63 + return;
64 + }
65 +
66 + // Load the Customizer options.
67 + require __DIR__ . '/content-options/customizer.php';
68 +
69 + // Load Blog Display function.
70 + require __DIR__ . '/content-options/blog-display.php';
71 +
72 + // Load Author Bio function.
73 + require __DIR__ . '/content-options/author-bio.php';
74 +
75 + // Load Post Details function.
76 + require __DIR__ . '/content-options/post-details.php';
77 +
78 + // Load Featured Images function.
79 + if ( jetpack_featured_images_should_load() ) {
80 + require __DIR__ . '/content-options/featured-images.php';
81 + }
82 +
83 + // Load Featured Images Fallback function.
84 + if ( jetpack_featured_images_fallback_should_load() ) {
85 + require __DIR__ . '/content-options/featured-images-fallback.php';
86 + }
87 + }
88 + add_action( 'init', 'jetpack_content_options_init' );
89 +
53 90 }
54 91
55 - // Load the Customizer options.
56 - require __DIR__ . '/content-options/customizer.php';
92 + if ( ! function_exists( 'jetpack_featured_images_get_settings' ) ) {
57 93
58 - // Load Blog Display function.
59 - require __DIR__ . '/content-options/blog-display.php';
94 + /**
95 + * Get featured images settings using the jetpack-content-options theme support.
96 + *
97 + * @deprecated 13.9 Moved to Classic Theme Helper package.
98 + */
99 + function jetpack_featured_images_get_settings() {
100 + _deprecated_function( __FUNCTION__, 'jetpack-13.9' );
101 + $options = get_theme_support( 'jetpack-content-options' );
60 102
61 - // Load Author Bio function.
62 - require __DIR__ . '/content-options/author-bio.php';
103 + $featured_images = ( ! empty( $options[0]['featured-images'] ) ) ? $options[0]['featured-images'] : null;
63 104
64 - // Load Post Details function.
65 - require __DIR__ . '/content-options/post-details.php';
105 + $settings = array(
106 + 'archive' => ( ! empty( $featured_images['archive'] ) ) ? $featured_images['archive'] : null,
107 + 'post' => ( ! empty( $featured_images['post'] ) ) ? $featured_images['post'] : null,
108 + 'page' => ( ! empty( $featured_images['page'] ) ) ? $featured_images['page'] : null,
109 + 'portfolio' => ( ! empty( $featured_images['portfolio'] ) ) ? $featured_images['portfolio'] : null,
110 + 'archive-default' => ( isset( $featured_images['archive-default'] ) && false === $featured_images['archive-default'] ) ? '' : 1,
111 + 'post-default' => ( isset( $featured_images['post-default'] ) && false === $featured_images['post-default'] ) ? '' : 1,
112 + 'page-default' => ( isset( $featured_images['page-default'] ) && false === $featured_images['page-default'] ) ? '' : 1,
113 + 'portfolio-default' => ( isset( $featured_images['portfolio-default'] ) && false === $featured_images['portfolio-default'] ) ? '' : 1,
114 + 'fallback' => ( ! empty( $featured_images['fallback'] ) ) ? $featured_images['fallback'] : null,
115 + 'fallback-default' => ( isset( $featured_images['fallback-default'] ) && false === $featured_images['fallback-default'] ) ? '' : 1,
116 + );
66 117
67 - // Load Featured Images function.
68 - if ( jetpack_featured_images_should_load() ) {
69 - require __DIR__ . '/content-options/featured-images.php';
70 - }
118 + $settings = array_merge(
119 + $settings,
120 + array(
121 + 'archive-option' => get_option( 'jetpack_content_featured_images_archive', $settings['archive-default'] ),
122 + 'post-option' => get_option( 'jetpack_content_featured_images_post', $settings['post-default'] ),
123 + 'page-option' => get_option( 'jetpack_content_featured_images_page', $settings['page-default'] ),
124 + 'portfolio-option' => get_option( 'jetpack_content_featured_images_portfolio', $settings['portfolio-default'] ),
125 + 'fallback-option' => get_option( 'jetpack_content_featured_images_fallback', $settings['fallback-default'] ),
126 + )
127 + );
71 128
72 - // Load Featured Images Fallback function.
73 - if ( jetpack_featured_images_fallback_should_load() ) {
74 - require __DIR__ . '/content-options/featured-images-fallback.php';
129 + return $settings;
130 + }
131 +
75 132 }
76 -}
77 -add_action( 'init', 'jetpack_content_options_init' );
78 133
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' );
134 + if ( ! function_exists( 'jetpack_featured_images_should_load' ) ) {
84 135
85 - $featured_images = ( ! empty( $options[0]['featured-images'] ) ) ? $options[0]['featured-images'] : null;
136 + /**
137 + * Determine if the Jetpack Featured Images should be load.
138 + *
139 + * @deprecated 13.9 Moved to Classic Theme Helper package.
140 + */
141 + function jetpack_featured_images_should_load() {
142 + _deprecated_function( __FUNCTION__, 'jetpack-13.9' );
143 + // If the theme doesn't support post thumbnails, don't continue.
144 + if ( ! current_theme_supports( 'post-thumbnails' ) ) {
145 + return false;
146 + }
86 147
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 - );
148 + $opts = jetpack_featured_images_get_settings();
99 149
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 - );
150 + // 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.
151 + if (
152 + ( true !== $opts['archive'] && true !== $opts['post'] && true !== $opts['page'] )
153 + || ( 1 === $opts['archive-option'] && 1 === $opts['post-option'] && 1 === $opts['page-option'] && ! is_customize_preview() )
154 + ) {
155 + return false;
156 + }
110 157
111 - return $settings;
112 -}
158 + return true;
159 + }
113 160
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 161 }
122 162
123 - $opts = jetpack_featured_images_get_settings();
163 + if ( ! function_exists( 'jetpack_featured_images_fallback_should_load' ) ) {
124 164
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 - }
165 + /**
166 + * Determine if the Jetpack Featured Images fallback should load.
167 + *
168 + * @deprecated 13.9 Moved to Classic Theme Helper package.
169 + */
170 + function jetpack_featured_images_fallback_should_load() {
171 + _deprecated_function( __FUNCTION__, 'jetpack-13.9' );
172 + // If the theme doesn't support post thumbnails, don't continue.
173 + if ( ! current_theme_supports( 'post-thumbnails' ) ) {
174 + return false;
175 + }
132 176
133 - return true;
134 -}
177 + $opts = jetpack_featured_images_get_settings();
135 178
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 - }
179 + // If the theme doesn't support fallback, don't continue.
180 + if ( true !== $opts['fallback'] ) {
181 + return false;
182 + }
144 183
145 - $opts = jetpack_featured_images_get_settings();
184 + return true;
185 + }
146 186
147 - // If the theme doesn't support fallback, don't continue.
148 - if ( true !== $opts['fallback'] ) {
149 - return false;
150 187 }
151 -
152 - return true;
153 188 }