-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathsingular.php
More file actions
34 lines (30 loc) · 841 Bytes
/
singular.php
File metadata and controls
34 lines (30 loc) · 841 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
<?php
/**
* The template for displaying singular posts of all types.
*
* @package Alpha\CoreTemplates
* @author Cipher Development
* @copyright Copyright (c) 2018, Cipher Development, LLC
* @since 1.0.0
*/
if ( carelib_is_beaver_enabled() ) {
/**
* Callback defined in includes/template-layout.php
*
* @see alpha_force_full_width_layout
*/
add_filter( 'carelib_get_theme_layout', 'alpha_force_full_width_layout', 15 );
/**
* Callback defined in includes/attributes.php
*
* @see carelib_attr_full_width_inner
*/
add_filter( 'carelib_attr_site-inner', 'carelib_attr_full_width_inner', 10 );
/**
* Callback defined in includes/template-entry.php
*
* @see carelib_null_entry_containers
*/
add_action( 'carelib_content_while_before', 'carelib_null_entry_containers', 10 );
}
carelib_framework();