Changeset 5801
- Timestamp:
- 08/15/2017 05:01:21 PM (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
sites/trunk/wordcamp.org/public_html/wp-content/plugins/wordcamp-coming-soon-page/classes/wordcamp-coming-soon-page.php
r5603 r5801 13 13 add_action( 'wp_head', array( $this, 'render_dynamic_styles' ) ); 14 14 add_filter( 'template_include', array( $this, 'override_theme_template' ) ); 15 add_action( 'template_redirect', array( $this, 'disable_jetpacks_open_graph' ) ); 15 16 16 17 add_image_size( 'wccsp_image_medium_rectangle', 500, 300 ); … … 103 104 104 105 return $template; 106 } 107 108 /** 109 * Disable Jetpack's Open Graph meta tags when the Coming Soon page is active 110 */ 111 public function disable_jetpacks_open_graph() { 112 if ( $this->override_theme_template ) { 113 add_filter( 'jetpack_enable_open_graph', '__return_false' ); 114 } 105 115 } 106 116
Note: See TracChangeset
for help on using the changeset viewer.