forked from Tetrakern/fictioneer
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsingle-fcn_collection.php
154 lines (120 loc) · 5.1 KB
/
single-fcn_collection.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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
<?php
/**
* Custom Post Type: Collection
*
* Shows the content of a collection with a statistics block and several optional
* partials for customization. It's paginated using the "Blog pages show at most"
* (posts_per_page) option under Settings > Reading. Collections can hold stories,
* chapters, recommendations, posts, and even other collections.
*
* @package WordPress
* @subpackage Fictioneer
* @since 4.0.0
* @see partials/_collection-header.php
* @see partials/_collection-statistics.php
*/
// Header
get_header( null, array( 'type' => 'fcn_collection' ) );
?>
<main id="main" class="main collection">
<?php do_action( 'fictioneer_main', 'collection' ); ?>
<div class="main__wrapper">
<?php do_action( 'fictioneer_main_wrapper' ); ?>
<?php while ( have_posts() ) : the_post(); ?>
<?php
// Setup
$title = fictioneer_get_safe_title( $post->ID, 'single-collection' );
$this_breadcrumb = [$title, get_the_permalink()];
$current_page = max( 1, get_query_var( 'pg', 1 ) ?: 1 ); // Paged not available
$featured_list = get_post_meta( $post->ID, 'fictioneer_collection_items', true );
$featured_list = is_array( $featured_list ) ? $featured_list : [];
// Query posts (if any)
if ( ! empty( $featured_list ) ) {
global $wpdb;
// Filter out hidden posts
$placeholders = implode( ',', array_fill( 0, count( $featured_list ), '%d' ) );
$sql =
"SELECT p.ID
FROM {$wpdb->posts} p
LEFT JOIN {$wpdb->postmeta} pm_story_hidden
ON (p.ID = pm_story_hidden.post_id AND pm_story_hidden.meta_key = 'fictioneer_story_hidden')
LEFT JOIN {$wpdb->postmeta} pm_chapter_hidden
ON (p.ID = pm_chapter_hidden.post_id AND pm_chapter_hidden.meta_key = 'fictioneer_chapter_hidden')
WHERE p.ID IN ($placeholders)
AND p.post_status = 'publish'
AND (pm_story_hidden.meta_value IS NULL OR pm_story_hidden.meta_value = '' OR pm_story_hidden.meta_value = '0')
AND (pm_chapter_hidden.meta_value IS NULL OR pm_chapter_hidden.meta_value = '' OR pm_chapter_hidden.meta_value = '0')";
$featured_list = $wpdb->get_col( $wpdb->prepare( $sql, ...$featured_list ) );
}
// Query posts
$query_args = array (
'fictioneer_query_name' => 'collection_featured',
'post_type' => 'any',
'post__in' => $featured_list ?: [0], // Must not be empty!
'ignore_sticky_posts' => 1,
'orderby' => 'modified',
'order' => 'DESC',
'paged' => $current_page,
'posts_per_page' => get_option( 'posts_per_page', 8 ),
'update_post_meta_cache' => true,
'update_post_term_cache' => true
);
$featured_query = new WP_Query( $query_args );
// Prime author cache
if ( ! empty( $featured_query->posts ) && function_exists( 'update_post_author_caches' ) ) {
update_post_author_caches( $featured_query->posts );
}
// Arguments for hooks and templates/etc.
$hook_args = array(
'collection' => $post,
'collection_id' => $post->ID,
'title' => $title,
'current_page' => $current_page,
'max_pages' => $featured_query->max_num_pages,
'featured_list' => $featured_list,
'featured_query' => $featured_query
);
?>
<article id="collection-<?php the_ID(); ?>" class="collection__article">
<?php
// Render article header
get_template_part( 'partials/_collection-header', null, $hook_args );
// Hook after header
do_action( 'fictioneer_collection_after_header', $hook_args );
?>
<?php if ( get_the_content() ) : ?>
<section class="collection__content content-section">
<?php the_content(); ?>
</section>
<?php endif; ?>
<?php do_action( 'fictioneer_collection_after_content', $hook_args ); ?>
<footer class="collection__footer"><?php do_action( 'fictioneer_collection_footer', $hook_args ); ?></footer>
</article>
<?php endwhile; ?>
</div>
<?php do_action( 'fictioneer_main_end', 'collection' ); ?>
</main>
<?php
// Footer arguments
$footer_args = array(
'post_type' => 'fcn_collection',
'post_id' => $post->ID,
'breadcrumbs' => array(
[fcntr( 'frontpage' ), get_home_url()]
)
);
// Add recommendation list breadcrumb (if set)
$collections_page_id = intval( get_option( 'fictioneer_collections_page', -1 ) ?: -1 );
if ( $collections_page_id > 0 ) {
$collections_page_title = trim( get_the_title( $collections_page_id ) );
$collections_page_title = empty( $collections_page_title ) ? __( 'Stories', 'fictioneer' ) : $collections_page_title;
$footer_args['breadcrumbs'][] = array(
$collections_page_title,
fictioneer_get_assigned_page_link( 'fictioneer_collections_page' )
);
}
// Add current breadcrumb
$footer_args['breadcrumbs'][] = $this_breadcrumb;
// Get footer with breadcrumbs
get_footer( null, $footer_args );
?>