Bump to 1.4.0, made some fixes for 8.2+

This commit is contained in:
2025-05-11 16:58:27 -07:00
parent 75cbf48af8
commit 5fd30040a4
14 changed files with 428 additions and 439 deletions

View File

@@ -6,40 +6,32 @@
* @since 1.0.0
*/
if (has_post_thumbnail()) {
$post_class = "has-thumbnail wow fadeInUp";
} else {
$post_class = "no-thumbnail wow fadeInUp";
} ?>
$post_class = has_post_thumbnail() ? "has-thumbnail wow fadeInUp" : "no-thumbnail wow fadeInUp";
?>
<article id="post-<?php the_ID(); ?>" <?php post_class($post_class); ?>>
<?php
echo '<div class="thumb-cat-wrap">';
if (has_post_thumbnail()) {
echo '<a href="' . esc_url(get_permalink()) . '" rel="bookmark">';
sophia_after_dark_post_thumbnail();
echo "</a>";
}
sophia_after_dark_article_categories_list();
echo "</div>";
if ("post" === get_post_type()) { ?>
<article id="post-<?php the_ID(); ?>" <?php post_class( $post_class ); ?>>
<div class="thumb-cat-wrap">
<?php if ( has_post_thumbnail() ) : ?>
<a href="<?php echo esc_url( get_permalink() ); ?>" rel="bookmark">
<?php sophia_after_dark_post_thumbnail(); ?>
</a>
<?php endif; ?>
<?php sophia_after_dark_article_categories_list(); ?>
</div>
<?php if ( "post" === get_post_type() ) : ?>
<div class="entry-cat">
<?php
sophia_after_dark_posted_on();
sophia_after_dark_posted_by();
?>
</div>
<?php }
?>
<?php endif; ?>
<header class="entry-header">
<?php the_title(
'<h2 class="entry-title"><a href="' .
esc_url(get_permalink()) .
'" rel="bookmark">',
"</a></h2>"
); ?>
</header>
<?php the_title( '<h2 class="entry-title"><a href="' . esc_url( get_permalink() ) . '" rel="bookmark">', '</a></h2>' ); ?>
</header>
<footer class="entry-footer">
<?php sophia_after_dark_entry_footer(); ?>