Completed
Branch master (bc147d)
by
unknown
02:08
created

ALNP_Twenty_Nineteen::add_theme_support()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 10

Duplication

Lines 10
Ratio 100 %

Importance

Changes 0
Metric Value
cc 1
nc 1
nop 0
dl 10
loc 10
rs 9.9332
c 0
b 0
f 0
1
<?php
2
/**
3
 * Auto Load Next Post Theme Support: Twenty Nineteen
4
 *
5
 * Applies support for WordPress Twenty Nineteen Theme.
6
 *
7
 * @since    1.5.5
8
 * @author   Sébastien Dumont
9
 * @category Theme Support
10
 * @package  Auto Load Next Post/Theme Support
11
 * @license  GPL-2.0+
12
 */
13
14
// Exit if accessed directly.
15
if ( ! defined( 'ABSPATH' ) ) {
16
	exit;
17
}
18
19
/**
20
 * ALNP_Twenty_Nineteen class.
21
 */
22 View Code Duplication
class ALNP_Twenty_Nineteen {
1 ignored issue
show
Duplication introduced by
This class seems to be duplicated in your project.

Duplicated code is one of the most pungent code smells. If you need to duplicate the same code in three or more different places, we strongly encourage you to look into extracting the code into a single class or operation.

You can also find more detailed suggestions in the “Code” section of your repository.

Loading history...
23
24
	/**
25
	 * Initlize Theme.
26
	 *
27
	 * @access public
28
	 * @static
29
	 */
30
	public static function init() {
31
		// Add theme support and preset the theme selectors.
32
		add_action( 'after_setup_theme', array( __CLASS__, 'add_theme_support' ) );
33
34
		// Filters the repeater template location.
35
		add_filter( 'alnp_template_redirect', array( __CLASS__, 'alnp_make_template_redirect' ) );
36
	} // END init()
37
38
	/**
39
	 * Add theme support by providing the theme selectors
40
	 * to be applied once the theme is activated.
41
	 *
42
	 * @access public
43
	 * @static
44
	 */
45
	public static function add_theme_support() {
46
		add_theme_support( 'auto-load-next-post', array(
47
			'content_container'    => 'main.site-main',
48
			'title_selector'       => 'h1.entry-title',
49
			'navigation_container' => 'nav.post-navigation',
50
			'comments_container'   => 'section#comments',
51
			'load_js_in_footer'    => 'no',
52
			'lock_js_in_footer'    => 'no',
53
		) );
54
	} // END add_theme_support()
55
56
	/**
57
	 * Filters the location of the repeater template.
58
	 *
59
	 * @access public
60
	 * @static
61
	 * @return string
62
	 */
63
	public static function alnp_make_template_redirect() {
64
		return AUTO_LOAD_NEXT_POST_FILE_PATH . '/template/theme-support/twentynineteen/content-alnp.php';
65
	} // END alnp_make_template_redirect()
66
67
} // END class
68
69
ALNP_Twenty_Nineteen::init();
70