Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
| Total | |
0.00% |
0 / 4 |
|
0.00% |
0 / 1 |
CRAP | n/a |
0 / 0 |
|
| twentyfifteen__jetpack_setup | |
0.00% |
0 / 1 |
|
0.00% |
0 / 1 |
2 | |||
| 1 | <?php |
| 2 | /** |
| 3 | * Jetpack Compatibility File |
| 4 | * See: https://jetpack.com/ |
| 5 | * |
| 6 | * @package automattic/jetpack-classic-theme-helper |
| 7 | */ |
| 8 | |
| 9 | if ( ! defined( 'ABSPATH' ) ) { |
| 10 | exit( 0 ); |
| 11 | } |
| 12 | |
| 13 | /** |
| 14 | * Add Jetpack theme supports for Twenty Fifteen. |
| 15 | */ |
| 16 | function twentyfifteen__jetpack_setup() { |
| 17 | /** |
| 18 | * Add theme support for Responsive Videos. |
| 19 | */ |
| 20 | add_theme_support( 'jetpack-responsive-videos' ); |
| 21 | } |
| 22 | add_action( 'after_setup_theme', 'twentyfifteen__jetpack_setup' ); |