Code Duplication    Length = 7-7 lines in 3 locations

modules/infinite-scroll/themes/twentyfifteen.php 1 location

@@ 28-34 (lines=7) @@
25
/**
26
 * Enqueue CSS stylesheet with theme styles for Infinite Scroll.
27
 */
28
function jetpack_twentyfifteen_infinite_scroll_enqueue_styles() {
29
	if ( wp_script_is( 'the-neverending-homepage' ) || class_exists( 'Jetpack_AMP_Support' ) && Jetpack_AMP_Support::is_amp_request() ) {
30
		$dep = wp_script_is( 'the-neverending-homepage' ) ? array( 'the-neverending-homepage' ) : array();
31
		wp_enqueue_style( 'infinity-twentyfifteen', plugins_url( 'twentyfifteen.css', __FILE__ ), $dep, '20141022' );
32
		wp_style_add_data( 'infinity-twentyfifteen', 'rtl', 'replace' );
33
	}
34
}
35
add_action( 'wp_enqueue_scripts', 'jetpack_twentyfifteen_infinite_scroll_enqueue_styles', 25 );
36
37
/**

modules/infinite-scroll/themes/twentyseventeen.php 1 location

@@ 52-58 (lines=7) @@
49
/**
50
 * Enqueue CSS stylesheet with theme styles for Infinite Scroll.
51
 */
52
function jetpack_twentyseventeen_infinite_scroll_enqueue_styles() {
53
	if ( wp_script_is( 'the-neverending-homepage' ) || class_exists( 'Jetpack_AMP_Support' ) && Jetpack_AMP_Support::is_amp_request() ) {
54
		$dep = wp_script_is( 'the-neverending-homepage' ) ? array( 'the-neverending-homepage' ) : array();
55
		wp_enqueue_style( 'infinity-twentyseventeen', plugins_url( 'twentyseventeen.css', __FILE__ ), $dep, '20161219' );
56
		wp_style_add_data( 'infinity-twentyseventeen', 'rtl', 'replace' );
57
	}
58
}
59
add_action( 'wp_enqueue_scripts', 'jetpack_twentyseventeen_infinite_scroll_enqueue_styles', 25 );
60
61
/**

modules/infinite-scroll/themes/twentysixteen.php 1 location

@@ 37-43 (lines=7) @@
34
/**
35
 * Enqueue CSS stylesheet with theme styles for Infinite Scroll.
36
 */
37
function jetpack_twentysixteen_infinite_scroll_enqueue_styles() {
38
	if ( wp_script_is( 'the-neverending-homepage' ) || class_exists( 'Jetpack_AMP_Support' ) && Jetpack_AMP_Support::is_amp_request() ) {
39
		$dep = wp_script_is( 'the-neverending-homepage' ) ? array( 'the-neverending-homepage' ) : array();
40
		wp_enqueue_style( 'infinity-twentysixteen', plugins_url( 'twentysixteen.css', __FILE__ ), $dep, '20151102' );
41
		wp_style_add_data( 'infinity-twentysixteen', 'rtl', 'replace' );
42
	}
43
}
44
add_action( 'wp_enqueue_scripts', 'jetpack_twentysixteen_infinite_scroll_enqueue_styles', 25 );
45
46
/**