twentyfifteen-rtl.css
7 years ago
twentyfifteen.css
4 years ago
twentyfifteen.php
4 years ago
twentyfourteen-rtl.css
7 years ago
twentyfourteen.css
4 years ago
twentyfourteen.php
4 years ago
twentynineteen-rtl.css
2 years ago
twentynineteen.css
3 years ago
twentynineteen.php
4 years ago
twentyseventeen.php
4 years ago
twentysixteen-rtl.css
3 years ago
twentysixteen.css
3 years ago
twentysixteen.php
2 years ago
twentytwenty-rtl.css
2 years ago
twentytwenty.css
2 years ago
twentytwenty.php
4 years ago
twentytwentyone-rtl.css
2 years ago
twentytwentyone.css
2 years ago
twentytwentyone.php
5 years ago
twentynineteen.php
228 lines
| 1 | <?php |
| 2 | /** |
| 3 | * Jetpack Compatibility File |
| 4 | * See: https://jetpack.com/ |
| 5 | * |
| 6 | * @package automattic/jetpack |
| 7 | */ |
| 8 | |
| 9 | /** |
| 10 | * Add Jetpack theme supports for Twenty Nineteen. |
| 11 | */ |
| 12 | function twentynineteen_jetpack_setup() { |
| 13 | |
| 14 | /** |
| 15 | * Add theme support for Infinite Scroll. |
| 16 | */ |
| 17 | add_theme_support( |
| 18 | 'infinite-scroll', |
| 19 | array( |
| 20 | 'type' => 'click', |
| 21 | 'container' => 'main', |
| 22 | 'render' => 'twentynineteen_infinite_scroll_render', |
| 23 | 'footer' => 'page', |
| 24 | ) |
| 25 | ); |
| 26 | |
| 27 | /** |
| 28 | * Add theme support for Responsive Videos. |
| 29 | */ |
| 30 | add_theme_support( 'jetpack-responsive-videos' ); |
| 31 | |
| 32 | /** |
| 33 | * Add theme support for geo-location. |
| 34 | */ |
| 35 | add_theme_support( 'jetpack-geo-location' ); |
| 36 | |
| 37 | /** |
| 38 | * Add theme support for Content Options. |
| 39 | */ |
| 40 | add_theme_support( |
| 41 | 'jetpack-content-options', |
| 42 | array( |
| 43 | 'blog-display' => array( 'content', 'excerpt' ), |
| 44 | 'post-details' => array( |
| 45 | 'stylesheet' => 'twentynineteen-style', |
| 46 | 'date' => '.posted-on', |
| 47 | 'categories' => '.cat-links', |
| 48 | 'tags' => '.tags-links', |
| 49 | 'author' => '.byline', |
| 50 | 'comment' => '.comments-link', |
| 51 | ), |
| 52 | 'featured-images' => array( |
| 53 | 'archive' => true, |
| 54 | 'post' => true, |
| 55 | 'page' => true, |
| 56 | ), |
| 57 | ) |
| 58 | ); |
| 59 | } |
| 60 | add_action( 'after_setup_theme', 'twentynineteen_jetpack_setup' ); |
| 61 | |
| 62 | /** |
| 63 | * Custom render function for Infinite Scroll. |
| 64 | */ |
| 65 | function twentynineteen_infinite_scroll_render() { |
| 66 | while ( have_posts() ) { |
| 67 | the_post(); |
| 68 | get_template_part( 'template-parts/content/content' ); |
| 69 | } |
| 70 | } |
| 71 | |
| 72 | /** |
| 73 | * Enqueue Jetpack compat styles for Twenty Nineteen. |
| 74 | */ |
| 75 | function twentynineteen_init_jetpack() { |
| 76 | /** |
| 77 | * Add our compat CSS file for Infinite Scroll and custom widget stylings and such. |
| 78 | * Set the version equal to filemtime for development builds, and the JETPACK__VERSION for production |
| 79 | * or skip it entirely for wpcom. |
| 80 | */ |
| 81 | if ( ! is_admin() ) { |
| 82 | $version = false; |
| 83 | if ( method_exists( 'Jetpack', 'is_development_version' ) ) { |
| 84 | $version = Jetpack::is_development_version() ? filemtime( plugin_dir_path( __FILE__ ) . 'twentynineteen.css' ) : JETPACK__VERSION; |
| 85 | } |
| 86 | wp_enqueue_style( 'twentynineteen-jetpack', plugins_url( 'twentynineteen.css', __FILE__ ), array(), $version ); |
| 87 | wp_style_add_data( 'twentynineteen-jetpack', 'rtl', 'replace' ); |
| 88 | } |
| 89 | } |
| 90 | add_action( 'init', 'twentynineteen_init_jetpack' ); |
| 91 | |
| 92 | /** |
| 93 | * Alter gallery widget default width. |
| 94 | */ |
| 95 | function twentynineteen_gallery_widget_content_width() { |
| 96 | return 390; |
| 97 | } |
| 98 | add_filter( 'gallery_widget_content_width', 'twentynineteen_gallery_widget_content_width' ); |
| 99 | |
| 100 | /** |
| 101 | * Alter featured-image default visibility for content-options. |
| 102 | */ |
| 103 | function twentynineteen_override_post_thumbnail() { |
| 104 | $options = get_theme_support( 'jetpack-content-options' ); |
| 105 | $featured_images = ( ! empty( $options[0]['featured-images'] ) ) ? $options[0]['featured-images'] : null; |
| 106 | |
| 107 | $settings = array( |
| 108 | 'post-default' => ( isset( $featured_images['post-default'] ) && false === $featured_images['post-default'] ) ? '' : 1, |
| 109 | 'page-default' => ( isset( $featured_images['page-default'] ) && false === $featured_images['page-default'] ) ? '' : 1, |
| 110 | ); |
| 111 | |
| 112 | $settings = array_merge( |
| 113 | $settings, |
| 114 | array( |
| 115 | 'post-option' => get_option( 'jetpack_content_featured_images_post', $settings['post-default'] ), |
| 116 | 'page-option' => get_option( 'jetpack_content_featured_images_page', $settings['page-default'] ), |
| 117 | ) |
| 118 | ); |
| 119 | |
| 120 | if ( ( ! $settings['post-option'] && is_single() ) |
| 121 | || ( ! $settings['page-option'] && is_singular() && is_page() ) ) { |
| 122 | return false; |
| 123 | } else { |
| 124 | return ! post_password_required() && ! is_attachment() && has_post_thumbnail(); |
| 125 | } |
| 126 | } |
| 127 | add_filter( 'twentynineteen_can_show_post_thumbnail', 'twentynineteen_override_post_thumbnail', 10, 2 ); |
| 128 | |
| 129 | /** |
| 130 | * Adds custom classes to the array of body classes. |
| 131 | * |
| 132 | * @param array $classes Classes for the body element. |
| 133 | * @return array |
| 134 | */ |
| 135 | function twentynineteen_jetpack_body_classes( $classes ) { |
| 136 | // Adds a class if we're in the Customizer. |
| 137 | if ( is_customize_preview() ) : |
| 138 | $classes[] = 'twentynineteen-customizer'; |
| 139 | endif; |
| 140 | |
| 141 | return $classes; |
| 142 | } |
| 143 | add_filter( 'body_class', 'twentynineteen_jetpack_body_classes' ); |
| 144 | |
| 145 | /** |
| 146 | * Load AMP theme specific hooks for infinite scroll. |
| 147 | * |
| 148 | * @return void |
| 149 | */ |
| 150 | function amp_twentynineteen_infinite_scroll_render_hooks() { |
| 151 | add_filter( 'jetpack_amp_infinite_footers', 'twentynineteen_amp_infinite_footers', 10, 2 ); |
| 152 | add_filter( 'jetpack_amp_infinite_output', 'twentynineteen_amp_infinite_output' ); |
| 153 | add_filter( 'jetpack_amp_infinite_older_posts', 'twentynineteen_amp_infinite_older_posts' ); |
| 154 | } |
| 155 | |
| 156 | /** |
| 157 | * Get the theme specific footers. |
| 158 | * |
| 159 | * @param array $footers The footers of the themes. |
| 160 | * @param string $buffer Contents of the output buffer. |
| 161 | * |
| 162 | * @return mixed |
| 163 | */ |
| 164 | function twentynineteen_amp_infinite_footers( $footers, $buffer ) { |
| 165 | // Collect the footer wrapper. |
| 166 | preg_match( |
| 167 | '/<footer id="colophon".*<!-- #colophon -->/s', |
| 168 | $buffer, |
| 169 | $footer |
| 170 | ); |
| 171 | $footers[] = reset( $footer ); |
| 172 | |
| 173 | return $footers; |
| 174 | } |
| 175 | |
| 176 | /** |
| 177 | * Hide and remove various elements from next page load. |
| 178 | * |
| 179 | * @param string $buffer Contents of the output buffer. |
| 180 | * |
| 181 | * @return string |
| 182 | */ |
| 183 | function twentynineteen_amp_infinite_output( $buffer ) { |
| 184 | // Hide site header on next page load. |
| 185 | $buffer = preg_replace( |
| 186 | '/id="masthead"/', |
| 187 | '$0 next-page-hide', |
| 188 | $buffer |
| 189 | ); |
| 190 | |
| 191 | // Hide pagination on next page load. |
| 192 | $buffer = preg_replace( |
| 193 | '/class=".*navigation pagination.*"/', |
| 194 | '$0 next-page-hide hidden', |
| 195 | $buffer |
| 196 | ); |
| 197 | |
| 198 | // Remove the footer as it will be added back to amp next page footer. |
| 199 | $buffer = preg_replace( |
| 200 | '/<footer id="colophon".*<!-- #colophon -->/s', |
| 201 | '', |
| 202 | $buffer |
| 203 | ); |
| 204 | |
| 205 | return $buffer; |
| 206 | } |
| 207 | |
| 208 | /** |
| 209 | * Filter the AMP infinite scroll older posts button |
| 210 | * |
| 211 | * @return string |
| 212 | */ |
| 213 | function twentynineteen_amp_infinite_older_posts() { |
| 214 | ob_start(); |
| 215 | ?> |
| 216 | <div id="infinite-handle" style="text-align: center;"> |
| 217 | <span> |
| 218 | <a href="{{url}}"> |
| 219 | <button> |
| 220 | <?php esc_html_e( 'Older posts', 'jetpack' ); ?> |
| 221 | </button> |
| 222 | </a> |
| 223 | </span> |
| 224 | </div> |
| 225 | <?php |
| 226 | return ob_get_clean(); |
| 227 | } |
| 228 |