Show posts assigned to multiple categories in current category page

That’s because that’s what you’re asking for: ‘category__in’ => array($category), It’s only going to show posts in that category. You shouldn’t be using get_posts() or WP_Query() in category.php. WordPress has already queried the correct posts. You should only be using the standard loop to display them: <?php if ( have_posts() ) : while ( have_posts() … Read more

Bring your own theme to PHP 8

I have found the error. In the header.php an undefined constant was tried to be accessed. So instead of the following wrong code: <?php if ($pagetitle == pagetitle_1){ $pt1 = “pagetitle_1”; $main = “main_1”; } else { $pt1 = “”; } ?> I had to add the quotation marks to pagetitle: <?php if ($pagetitle == … Read more