File tree Expand file tree Collapse file tree 2 files changed +9
-3
lines changed Expand file tree Collapse file tree 2 files changed +9
-3
lines changed Original file line number Diff line number Diff line change @@ -598,21 +598,24 @@ function siteorigin_north_strip_image( $content ) {
598
598
599
599
if ( ! function_exists ( 'siteorigin_north_archive_post_content ' ) ) {
600
600
/**
601
- * Outputs the post content or excerpt based on thheme settings, and whether
601
+ * Outputs the post content or excerpt based on theme settings, and whether
602
602
* the post is singular.
603
603
*/
604
604
function siteorigin_north_post_content () {
605
605
$ read_more_text = ! empty ( siteorigin_setting ( 'blog_read_more_text ' ) ) ? siteorigin_setting ( 'blog_read_more_text ' ) : __ ( 'Read More ' , 'siteorigin-north ' );
606
606
607
- if ( is_singular () || siteorigin_setting ( 'blog_post_content ' ) == 'content ' ) {
607
+ if (
608
+ is_singular () ||
609
+ siteorigin_setting ( 'blog_post_content ' ) == 'content '
610
+ ) {
608
611
the_content ( $ read_more_text );
609
612
return ;
610
613
}
611
614
612
615
the_excerpt ();
613
616
614
617
if ( siteorigin_setting ( 'blog_excerpt_post_link ' ) ) { ?>
615
- <a href="<?php esc_url ( get_the_permalink () ); ?> " class="more-link">
618
+ <a href="<?php echo esc_url ( get_the_permalink () ); ?> " class="more-link">
616
619
<?php echo esc_html ( $ read_more_text ); ?>
617
620
</a>
618
621
<?php
Original file line number Diff line number Diff line change @@ -104,6 +104,9 @@ Original design files are available on [Google Drive](https://drive.google.com/f
104
104
105
105
== Changelog ==
106
106
107
+ = 1.20.8 - 4 December 2024 =
108
+ * Resolved Read More button linking when Archive Post Content set to Post Excerpt.
109
+
107
110
= 1.20.7 - 22 November 2024 =
108
111
* WooCommerce: Improved cart action button spacing.
109
112
* Author Archive: Adjusted the title spacing if a bio is set.
You can’t perform that action at this time.
0 commit comments