Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion archive.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
* @link https://developer.wordpress.org/themes/basics/template-hierarchy/
*
* @package Bootscore
* @version 6.2.0
* @version 6.2.3
*/

// Exit if accessed directly
Expand Down Expand Up @@ -63,6 +63,8 @@
<a class="text-body text-decoration-none" href="<?php the_permalink(); ?>">
<?php the_title('<h2 class="' . apply_filters('bootscore/class/loop/card/title', 'blog-post-title h5', 'archive') . '">', '</h2>'); ?>
</a>

<?php do_action('bootscore_after_loop_title', 'archive'); ?>

<?php if (apply_filters('bootscore/loop/meta', true, 'archive')) : ?>
<?php if ('post' === get_post_type()) : ?>
Expand Down
4 changes: 3 additions & 1 deletion index.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
* @link https://developer.wordpress.org/themes/basics/template-hierarchy/
*
* @package Bootscore
* @version 6.2.0
* @version 6.2.3
*/

// Exit if accessed directly
Expand Down Expand Up @@ -76,6 +76,8 @@
<a class="text-body text-decoration-none" href="<?php the_permalink(); ?>">
<?php the_title('<h2 class="' . apply_filters('bootscore/class/loop/card/title', 'blog-post-title h5', 'index') . '">', '</h2>'); ?>
</a>

<?php do_action('bootscore_after_loop_title', 'index'); ?>

<?php if (apply_filters('bootscore/loop/meta', true, 'index')) : ?>
<?php if ('post' === get_post_type()) : ?>
Expand Down
4 changes: 3 additions & 1 deletion template-parts/search/content-search.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
* @link https://developer.wordpress.org/themes/basics/template-hierarchy/
*
* @package Bootscore
* @version 6.1.0
* @version 6.2.3
*/


Expand Down Expand Up @@ -42,6 +42,8 @@
<a class="text-body text-decoration-none" href="<?php the_permalink(); ?>">
<?php the_title('<h2 class="' . apply_filters('bootscore/class/loop/card/title', 'blog-post-title h5', 'content-search') . '">', '</h2>'); ?>
</a>

<?php do_action('bootscore_after_loop_title', 'content-search'); ?>

<?php if (apply_filters('bootscore/loop/meta', true, 'content-search')) : ?>
<?php if ('post' === get_post_type()) : ?>
Expand Down