From 7e218e0c1cccd7dcb782e66f0bd4409509d8e909 Mon Sep 17 00:00:00 2001 From: Kazhnuz Date: Mon, 20 Nov 2023 13:05:35 +0100 Subject: [PATCH] fix: fix categories btn --- components/article/terms.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/components/article/terms.php b/components/article/terms.php index 975e939..3686efc 100644 --- a/components/article/terms.php +++ b/components/article/terms.php @@ -5,7 +5,7 @@ echo '

Romans

'; $romans = get_the_terms($post->ID, 'roman'); foreach( $romans as $roman ) { - echo "
  •  " . $roman->name . "
  • "; + echo "
  •  " . $roman->name . "
  • "; } echo ""; } else { @@ -13,7 +13,7 @@ echo ""; } @@ -22,7 +22,7 @@ echo ""; }