| Conditions | 2 |
| Paths | 2 |
| Total Lines | 6 |
| Code Lines | 4 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 22 | function jetpack_twentyfifteen_infinite_scroll_enqueue_styles() { |
||
| 23 | if ( wp_script_is( 'the-neverending-homepage' ) ) { |
||
| 24 | wp_enqueue_style( 'infinity-twentyfifteen', plugins_url( 'twentyfifteen.css', __FILE__ ), array( 'the-neverending-homepage' ), '20141022' ); |
||
| 25 | wp_style_add_data( 'infinity-twentyfifteen', 'rtl', 'replace' ); |
||
| 26 | } |
||
| 27 | } |
||
| 28 | add_action( 'wp_enqueue_scripts', 'jetpack_twentyfifteen_infinite_scroll_enqueue_styles', 25 ); |
||
| 29 |