-
Notifications
You must be signed in to change notification settings - Fork 7
/
single.php
54 lines (48 loc) · 1.02 KB
/
single.php
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
<?php
// Block direct access
if( !defined( 'ABSPATH' ) ){
exit( 'Direct script access denied.' );
}
/**
* @Packge : Philosophy
* @Version : 1.0
* @Author : Colorlib
* @Author URI : http://colorlib.com/wp/
*
*/
// Call Header
get_header();
/**
*
* Hook for Blog, single, page, search, archive pages
* wrapper start with wrapper div, container, row.
*
* Hook philosophy_wrp_start
*
* @Hooked philosophy_wrp_start_cb
*
*/
do_action( 'philosophy_wrp_start' );
if( have_posts() ){
while( have_posts() ){
the_post();
// Post Contant
get_template_part( 'templates/content', 'single' );
}
// Reset Data
wp_reset_postdata();
}else{
get_template_part( 'templates/content', 'none' );
}
/**
* Hook for Blog, single, page, search, archive pages
* wrapper end with wrapper div, container, row.
*
* Hook philosophy_wrp_end
* @Hooked philosophy_wrp_end_cb
*
*/
do_action( 'philosophy_wrp_end' );
// Call Footer
get_footer();
?>