Fix typo in new filter hooks

haha
This commit is contained in:
Tetrakern 2023-08-30 02:49:52 +02:00
parent b55613c2f9
commit 8137ff6d00
5 changed files with 5 additions and 5 deletions

View File

@ -205,7 +205,7 @@ $show_type = $args['show_type'] ?? false;
esc_attr__( 'Comments', 'fictioneer' ) . '"></i> ' . get_comments_number( $post );
// Filer footer items
$footer_items = apply_filters( 'fictioneer_filer_chapter_card_footer', $footer_items, $post, $args, $story_data );
$footer_items = apply_filters( 'fictioneer_filter_chapter_card_footer', $footer_items, $post, $args, $story_data );
// Implode and render footer items
echo implode( ' ', $footer_items );

View File

@ -257,7 +257,7 @@ $comment_count = get_comments( $comment_args );
esc_attr__( 'Comments', 'fictioneer' ) . '"></i> ' . $comment_count;
// Filer footer items
$footer_items = apply_filters( 'fictioneer_filer_collection_card_footer', $footer_items, $post, $args, $items );
$footer_items = apply_filters( 'fictioneer_filter_collection_card_footer', $footer_items, $post, $args, $items );
// Implode and render footer items
echo implode( ' ', $footer_items );

View File

@ -72,7 +72,7 @@ $comments_number = get_comments_number();
}
// Filer footer items
$footer_items = apply_filters( 'fictioneer_filer_page_card_footer', $footer_items, $post, $args );
$footer_items = apply_filters( 'fictioneer_filter_page_card_footer', $footer_items, $post, $args );
// Implode and render footer items
echo implode( ' ', $footer_items );

View File

@ -94,7 +94,7 @@ $show_type = $args['show_type'] ?? false;
esc_attr__( 'Comments', 'fictioneer' ) . '"></i> ' . get_comments_number( $post );
// Filer footer items
$footer_items = apply_filters( 'fictioneer_filer_post_card_footer', $footer_items, $post, $args );
$footer_items = apply_filters( 'fictioneer_filter_post_card_footer', $footer_items, $post, $args );
// Implode and render footer items
echo implode( ' ', $footer_items );

View File

@ -196,7 +196,7 @@ $is_sticky = FICTIONEER_ENABLE_STICKY_CARDS &&
$footer_items['status'] = '<i class="' . $story['icon'] . '"></i> ' . fcntr( $story['status'] );
// Filer footer items
$footer_items = apply_filters( 'fictioneer_filer_story_card_footer', $footer_items, $post, $args, $story );
$footer_items = apply_filters( 'fictioneer_filter_story_card_footer', $footer_items, $post, $args, $story );
// Implode and render footer items
echo implode( ' ', $footer_items );