I want display category description only the first page:
I use in my category.php:
<?php if(category_description()) :?>
<section class="cat-desc">
<?php echo category_description(); ?>
</section>
<?php endif; ?>
I try this:
<?
if (is_category()) {
$page = (get_query_var('paged')) ? get_query_var('paged') : 1;
if ($page == 1) {
echo category_description(); //you don't need to include the category id
on the actual category page - wordpress figures it out.
}
}
?>
<?
if (is_tag()) {
$page2 = (get_query_var('paged')) ? get_query_var('paged') : 1;
if ($page2 == 1) {
echo tag_description(); //you don't need to include the category id on the
actual category page - wordpress figures it out.
}
}
?>
With the Category description is all ok but the tag description is missing.
Thanks.
I want display category description only the first page:
I use in my category.php:
<?php if(category_description()) :?>
<section class="cat-desc">
<?php echo category_description(); ?>
</section>
<?php endif; ?>
I try this:
<?
if (is_category()) {
$page = (get_query_var('paged')) ? get_query_var('paged') : 1;
if ($page == 1) {
echo category_description(); //you don't need to include the category id
on the actual category page - wordpress figures it out.
}
}
?>
<?
if (is_tag()) {
$page2 = (get_query_var('paged')) ? get_query_var('paged') : 1;
if ($page2 == 1) {
echo tag_description(); //you don't need to include the category id on the
actual category page - wordpress figures it out.
}
}
?>
With the Category description is all ok but the tag description is missing.
Thanks.
Share Improve this question asked Nov 15, 2018 at 4:02 JesúsJesús 31 bronze badge 2 |1 Answer
Reset to default 0After adding descriptions to your tags, modify your WordPress theme to display the description at the top of each archive page. Open the "Appearance" section of your WordPress website's main menu and select "Editor." Click the "tag.php" link under "Tag Template" on the right side of the page.
category.php
is for category archives - for tag archives, usetag.php
. – Sally CJ Commented Nov 15, 2018 at 5:06