269 lines
9.0 KiB
PHP
269 lines
9.0 KiB
PHP
<?php
|
|
/**
|
|
* Partial: Post Collection
|
|
*
|
|
* @package WordPress
|
|
* @subpackage Fictioneer
|
|
* @since 4.0
|
|
*
|
|
* @internal $args['show_type'] Whether to show the post type label. Unsafe.
|
|
* @internal $args['cache'] Whether to account for active caching. Unsafe.
|
|
* @internal $args['order'] Current order. Default 'desc'. Unsafe.
|
|
* @internal $args['orderby'] Current orderby. Default 'modified'. Unsafe.
|
|
*/
|
|
?>
|
|
|
|
<?php
|
|
|
|
// No direct access!
|
|
defined( 'ABSPATH' ) OR exit;
|
|
|
|
// Setup
|
|
$list_title = trim( fictioneer_get_field( 'fictioneer_collection_list_title' ) );
|
|
$title = empty( $list_title ) ? fictioneer_get_safe_title( get_the_ID() ) : $list_title;
|
|
$description = fictioneer_get_content_field( 'fictioneer_collection_description' );
|
|
$items = fictioneer_get_field( 'fictioneer_collection_items' );
|
|
$items = empty( $items ) ? [] : $items;
|
|
$story_count = 0;
|
|
$chapter_count = 0;
|
|
$word_count = 0;
|
|
$processed_ids = [];
|
|
|
|
// Taxonomies
|
|
$tags = false;
|
|
$fandoms = false;
|
|
$characters = false;
|
|
$genres = false;
|
|
|
|
if (
|
|
get_option( 'fictioneer_show_tags_on_collection_cards' ) &&
|
|
! get_option( 'fictioneer_hide_taxonomies_on_collection_cards' )
|
|
) {
|
|
$tags = get_the_tags();
|
|
}
|
|
|
|
if ( ! get_option( 'fictioneer_hide_taxonomies_on_collection_cards' ) ) {
|
|
$fandoms = get_the_terms( $post->ID, 'fcn_fandom' );
|
|
$characters = get_the_terms( $post->ID, 'fcn_character' );
|
|
$genres = get_the_terms( $post->ID, 'fcn_genre' );
|
|
}
|
|
|
|
// Flags
|
|
$show_type = $args['show_type'] ?? false;
|
|
$show_taxonomies = ! get_option( 'fictioneer_hide_taxonomies_on_collection_cards' ) && ( $fandoms || $characters || $genres || $tags );
|
|
|
|
// Query featured posts
|
|
if ( ! empty( $items ) ) {
|
|
$items = new WP_Query(
|
|
array(
|
|
'post_type' => 'any',
|
|
'post_status' => 'publish',
|
|
'post__in' => fictioneer_rescue_array_zero( $items ),
|
|
'ignore_sticky_posts' => true,
|
|
'orderby' => 'modified',
|
|
'posts_per_page' => -1,
|
|
'update_post_meta_cache' => false, // Improve performance
|
|
'update_post_term_cache' => false, // Improve performance
|
|
'no_found_rows' => true // Improve performance
|
|
)
|
|
);
|
|
|
|
$items = $items->posts;
|
|
}
|
|
|
|
// Statistics
|
|
if ( ! empty( $items ) ) {
|
|
foreach ( $items as $item ) {
|
|
// Count by type
|
|
switch ( $item->post_type ) {
|
|
case 'fcn_chapter':
|
|
if ( ! in_array( $item->ID, $processed_ids ) ) {
|
|
$chapter_count += 1;
|
|
$word_count += get_post_meta( $item->ID, '_word_count', true );
|
|
$processed_ids[] = $item->ID;
|
|
}
|
|
break;
|
|
case 'fcn_story':
|
|
$story_count += 1;
|
|
$chapter_ids = fictioneer_get_field( 'fictioneer_story_chapters', $item->ID );
|
|
|
|
// Try to rescue an empty description by using one from a story...
|
|
if ( empty( $description ) ) {
|
|
$description = fictioneer_first_paragraph_as_excerpt(
|
|
fictioneer_get_content_field( 'fictioneer_story_short_description', $item->ID )
|
|
);
|
|
}
|
|
|
|
// Query eligible chapters
|
|
$chapter_query_args = array(
|
|
'post_type' => 'fcn_chapter',
|
|
'post_status' => 'publish',
|
|
'post__in' => fictioneer_rescue_array_zero( $chapter_ids ),
|
|
'posts_per_page' => -1,
|
|
'update_post_term_cache' => false, // Improve performance
|
|
'no_found_rows' => true // Improve performance
|
|
);
|
|
|
|
$chapters = new WP_Query( $chapter_query_args );
|
|
$chapters = $chapters->posts;
|
|
|
|
if ( ! empty( $chapters ) ) {
|
|
foreach ( $chapters as $chapter ) {
|
|
if (
|
|
fictioneer_get_field( 'fictioneer_chapter_no_chapter', $chapter->ID ) ||
|
|
fictioneer_get_field( 'fictioneer_chapter_hidden', $chapter->ID )
|
|
) {
|
|
continue;
|
|
}
|
|
|
|
if ( ! in_array( $chapter->ID, $processed_ids ) ) {
|
|
$chapter_count += 1;
|
|
$word_count += get_post_meta( $chapter->ID, '_word_count', true );
|
|
$processed_ids[] = $chapter->ID;
|
|
}
|
|
}
|
|
}
|
|
break;
|
|
}
|
|
}
|
|
|
|
// Prepare features items
|
|
$items = array_slice( $items, 0, 3 );
|
|
}
|
|
|
|
// Required since it's possible to add chapters to collection outside of
|
|
// their stories, which would cause the comments to be counted twice.
|
|
$comment_args = array(
|
|
'post_type' => 'fcn_chapter',
|
|
'status' => 1,
|
|
'post__in' => fictioneer_rescue_array_zero( $processed_ids ),
|
|
'count' => true,
|
|
'update_comment_meta_cache' => false // Improve performance
|
|
);
|
|
|
|
$comment_count = get_comments( $comment_args );
|
|
|
|
?>
|
|
|
|
<li id="collection-card-<?php the_ID(); ?>" class="card">
|
|
<div class="card__body polygon">
|
|
|
|
<div class="card__header _large">
|
|
|
|
<?php if ( $show_type ) : ?>
|
|
<div class="card__label"><?php _ex( 'Collection', 'Collection card label.', 'fictioneer' ); ?></div>
|
|
<?php endif; ?>
|
|
|
|
<h3 class="card__title"><a href="<?php the_permalink(); ?>" class="truncate _1-1"><?php echo $title; ?></a></h3>
|
|
|
|
</div>
|
|
|
|
<div class="card__main _grid _large">
|
|
|
|
<?php
|
|
// Thumbnail
|
|
if ( has_post_thumbnail() ) {
|
|
printf(
|
|
'<a href="%1$s" title="%2$s" class="card__image cell-img" %3$s>%4$s</a>',
|
|
get_the_post_thumbnail_url( null, 'full' ),
|
|
sprintf( __( '%s Thumbnail', 'fictioneer' ), $title ),
|
|
fictioneer_get_lightbox_attribute(),
|
|
get_the_post_thumbnail( null, 'cover' )
|
|
);
|
|
}
|
|
|
|
// Content
|
|
printf(
|
|
'<div class="card__content cell-desc truncate %1$s"><span>%2$s</span></div>',
|
|
count( $items ) > 2 ? '_3-4' : '_4-4',
|
|
$description
|
|
);
|
|
?>
|
|
|
|
<?php if ( ! empty( $items ) ) : ?>
|
|
<ol class="card__link-list cell-list">
|
|
<?php foreach ( $items as $item ) : ?>
|
|
<li>
|
|
<div class="card__left text-overflow-ellipsis">
|
|
<i class="fa-solid fa-caret-right"></i>
|
|
<a href="<?php the_permalink( $item->ID ); ?>"><?php
|
|
$list_title = $item->post_type == 'fcn_chapter' ?
|
|
fictioneer_get_field( 'fictioneer_chapter_list_title', $item->ID ) : 0;
|
|
|
|
if ( $list_title ) {
|
|
echo wp_strip_all_tags( $list_title );
|
|
} else {
|
|
echo fictioneer_get_safe_title( $item->ID );
|
|
}
|
|
?></a>
|
|
</div>
|
|
<div class="card__right">
|
|
<?php
|
|
printf(
|
|
'%1$s<span class="separator-dot"> • </span>%2$s',
|
|
get_post_type_object( $item->post_type )->labels->singular_name,
|
|
get_the_modified_date( FICTIONEER_CARD_COLLECTION_LI_DATE, $item->ID )
|
|
);
|
|
?>
|
|
</div>
|
|
</li>
|
|
<?php endforeach; ?>
|
|
</ol>
|
|
<?php endif; ?>
|
|
|
|
<?php if ( $show_taxonomies ) : ?>
|
|
<div class="card__tag-list cell-tax">
|
|
<?php
|
|
$taxonomies = array_merge(
|
|
$fandoms ? fictioneer_generate_card_tags( $fandoms, '_fandom' ) : [],
|
|
$genres ? fictioneer_generate_card_tags( $genres, '_genre' ) : [],
|
|
$tags ? fictioneer_generate_card_tags( $tags ) : [],
|
|
$characters ? fictioneer_generate_card_tags( $characters, '_character' ) : []
|
|
);
|
|
|
|
// Implode with three-per-em spaces around a bullet
|
|
echo implode( ' • ', $taxonomies );
|
|
?>
|
|
</div>
|
|
<?php endif; ?>
|
|
|
|
</div>
|
|
|
|
<div class="card__footer">
|
|
<div class="card__left text-overflow-ellipsis"><?php
|
|
// Build footer items
|
|
$footer_items = [];
|
|
|
|
$footer_items['stories'] = '<i class="fa-solid fa-book" title="' .
|
|
esc_attr__( 'Stories', 'fictioneer' ) . '"></i> ' . $story_count;
|
|
|
|
$footer_items['chapters'] = '<i class="fa-solid fa-list" title="' .
|
|
esc_attr__( 'Chapters', 'fictioneer' ) . '"></i> ' . $chapter_count;
|
|
|
|
$footer_items['words'] = '<i class="fa-solid fa-font" title="' .
|
|
esc_attr__( 'Total Words', 'fictioneer' ) . '"></i> ' . fictioneer_shorten_number( $word_count );
|
|
|
|
if ( ( $args['orderby'] ?? 0 ) === 'date' ) {
|
|
$footer_items['publish_date'] = '<i class="fa-solid fa-clock" title="' .
|
|
esc_attr__( 'Published', 'fictioneer' ) .'"></i> ' .
|
|
get_the_date( FICTIONEER_CARD_COLLECTION_FOOTER_DATE );
|
|
} else {
|
|
$footer_items['modified_date'] = '<i class="fa-regular fa-clock" title="' .
|
|
esc_attr__( 'Last Updated', 'fictioneer' ) .'"></i> ' .
|
|
get_the_modified_date( FICTIONEER_CARD_COLLECTION_FOOTER_DATE );
|
|
}
|
|
|
|
$footer_items['comments'] = '<i class="fa-solid fa-message" title="' .
|
|
esc_attr__( 'Comments', 'fictioneer' ) . '"></i> ' . $comment_count;
|
|
|
|
// Filer footer items
|
|
$footer_items = apply_filters( 'fictioneer_filter_collection_card_footer', $footer_items, $post, $args, $items );
|
|
|
|
// Implode and render footer items
|
|
echo implode( ' ', $footer_items );
|
|
?></div>
|
|
</div>
|
|
|
|
</div>
|
|
</li>
|