PluginProbe
Jetpack – WP Security, Backup, Speed, & Growth / 13.5
Jetpack – WP Security, Backup, Speed, & Growth v13.5
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
155 lines 7.2 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 'avatar-default' => true, // display or not the default avatar for the author bio: true or false.
21 'masonry' => '.site-main', // a CSS selector matching the elements that triggers a masonry refresh if the theme is using a masonry layout.
22 'post-details' => array(
23 'stylesheet' => 'themeslug-style', // name of the theme's stylesheet.
24 'date' => '.posted-on', // a CSS selector matching the elements that display the post date.
25 'categories' => '.cat-links', // a CSS selector matching the elements that display the post categories.
26 'tags' => '.tags-links', // a CSS selector matching the elements that display the post tags.
27 'author' => '.byline', // a CSS selector matching the elements that display the post author.
28 'comment' => '.comments-link', // a CSS selector matching the elements that display the comment link.
29 ),
30 'featured-images' => array(
31 'archive' => true, // enable or not the featured image check for archive pages: true or false.
32 '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).
33 'post' => true, // enable or not the featured image check for single posts: true or false.
34 '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).
35 'page' => true, // enable or not the featured image check for single pages: true or false.
36 '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).
37 'portfolio' => true, // enable or not the featured image check for single projects: true or false.
38 '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).
39 'fallback' => true, // enable or not the featured image fallback: true or false.
40 'fallback-default' => true, // the default setting for featured image fallbacks: true or false (only required if false)
41 ),
42 ) );
43 */
44
45 /**
46 * Activate the Content Options plugin.
47 *
48 * @uses current_theme_supports()
49 */
50 function jetpack_content_options_init() {
51 // If the theme doesn't support 'jetpack-content-options', don't continue.
52 if ( ! current_theme_supports( 'jetpack-content-options' ) ) {
53 return;
54 }
55
56 // Load the Customizer options.
57 require __DIR__ . '/content-options/customizer.php';
58
59 // Load Blog Display function.
60 require __DIR__ . '/content-options/blog-display.php';
61
62 // Load Author Bio function.
63 require __DIR__ . '/content-options/author-bio.php';
64
65 // Load Post Details function.
66 require __DIR__ . '/content-options/post-details.php';
67
68 // Load Featured Images function.
69 if ( jetpack_featured_images_should_load() ) {
70 require __DIR__ . '/content-options/featured-images.php';
71 }
72
73 // Load Featured Images Fallback function.
74 if ( jetpack_featured_images_fallback_should_load() ) {
75 require __DIR__ . '/content-options/featured-images-fallback.php';
76 }
77 }
78 add_action( 'init', 'jetpack_content_options_init' );
79
80 /**
81 * Get featured images settings using the jetpack-content-options theme support.
82 */
83 function jetpack_featured_images_get_settings() {
84 $options = get_theme_support( 'jetpack-content-options' );
85
86 $featured_images = ( ! empty( $options[0]['featured-images'] ) ) ? $options[0]['featured-images'] : null;
87
88 $settings = array(
89 'archive' => ( ! empty( $featured_images['archive'] ) ) ? $featured_images['archive'] : null,
90 'post' => ( ! empty( $featured_images['post'] ) ) ? $featured_images['post'] : null,
91 'page' => ( ! empty( $featured_images['page'] ) ) ? $featured_images['page'] : null,
92 'portfolio' => ( ! empty( $featured_images['portfolio'] ) ) ? $featured_images['portfolio'] : null,
93 'archive-default' => ( isset( $featured_images['archive-default'] ) && false === $featured_images['archive-default'] ) ? '' : 1,
94 'post-default' => ( isset( $featured_images['post-default'] ) && false === $featured_images['post-default'] ) ? '' : 1,
95 'page-default' => ( isset( $featured_images['page-default'] ) && false === $featured_images['page-default'] ) ? '' : 1,
96 'portfolio-default' => ( isset( $featured_images['portfolio-default'] ) && false === $featured_images['portfolio-default'] ) ? '' : 1,
97 'fallback' => ( ! empty( $featured_images['fallback'] ) ) ? $featured_images['fallback'] : null,
98 'fallback-default' => ( isset( $featured_images['fallback-default'] ) && false === $featured_images['fallback-default'] ) ? '' : 1,
99 );
100
101 $settings = array_merge(
102 $settings,
103 array(
104 'archive-option' => get_option( 'jetpack_content_featured_images_archive', $settings['archive-default'] ),
105 'post-option' => get_option( 'jetpack_content_featured_images_post', $settings['post-default'] ),
106 'page-option' => get_option( 'jetpack_content_featured_images_page', $settings['page-default'] ),
107 'portfolio-option' => get_option( 'jetpack_content_featured_images_portfolio', $settings['portfolio-default'] ),
108 'fallback-option' => get_option( 'jetpack_content_featured_images_fallback', $settings['fallback-default'] ),
109 )
110 );
111
112 return $settings;
113 }
114
115 /**
116 * Determine if the Jetpack Featured Images should be load.
117 */
118 function jetpack_featured_images_should_load() {
119 // If the theme doesn't support post thumbnails, don't continue.
120 if ( ! current_theme_supports( 'post-thumbnails' ) ) {
121 return false;
122 }
123
124 $opts = jetpack_featured_images_get_settings();
125
126 // 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.
127 if (
128 ( true !== $opts['archive'] && true !== $opts['post'] && true !== $opts['page'] )
129 || ( 1 === $opts['archive-option'] && 1 === $opts['post-option'] && 1 === $opts['page-option'] && ! is_customize_preview() )
130 ) {
131 return false;
132 }
133
134 return true;
135 }
136
137 /**
138 * Determine if the Jetpack Featured Images fallback should load.
139 */
140 function jetpack_featured_images_fallback_should_load() {
141 // If the theme doesn't support post thumbnails, don't continue.
142 if ( ! current_theme_supports( 'post-thumbnails' ) ) {
143 return false;
144 }
145
146 $opts = jetpack_featured_images_get_settings();
147
148 // If the theme doesn't support fallback, don't continue.
149 if ( true !== $opts['fallback'] ) {
150 return false;
151 }
152
153 return true;
154 }
155