HEX
Server: Apache/2.4.52 (Ubuntu)
System: Linux WebLive 5.15.0-79-generic #86-Ubuntu SMP Mon Jul 10 16:07:21 UTC 2023 x86_64
User: ubuntu (1000)
PHP: 7.4.33
Disabled: pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare,
Upload Files
File: /var/www/html/wpprm/wp-content/themes/ronneby/templates/woo-top.php
<?php if ( ! defined( 'ABSPATH' ) ) { exit; } ?>

<div class="blog-top-block">
	<div class="title"><?php echo esc_html__('Filter by:','dfd') ?></div>
	<?php
	
	$categories = get_terms('product_cat');
	if(!empty($categories) && is_array($categories)) : ?>
		<div class="click-dropdown">
			<a href="#"><?php esc_html_e('Categories','dfd') ?><span></span></a>
			<div>
				<ul class="category-filer dfd-woo-page-filter">
						<?php
						foreach($categories as $category) :
							$cat_url = get_term_link($category->slug, 'product_cat');
							if(!is_wp_error($cat_url)) {
							?>
								<li>
									<a href="<?php echo esc_url($cat_url); ?>"><?php echo esc_html($category->name); ?></a>
								</li>
							<?php
							}
						endforeach; ?>
				</ul>
			</div>
		</div>
	<?php endif; ?>
	<?php
	$tags = get_terms('product_tag');
	if(!empty($tags) && is_array($tags)) : ?>
		<div class="click-dropdown">
			<a href="#"><?php esc_html_e('Tags','dfd') ?><span></span></a>
			<div>
				<ul class="filter-tags">
					<?php
					foreach($tags as $tag) :
						$tag_url = get_term_link($tag->slug, 'product_tag');
						if(!is_wp_error($tag_url)) {
							?>
							<li>
								<a href="<?php echo esc_url($tag_url); ?>"><?php echo esc_html($tag->name); ?></a>
							</li>
							<?php
						}
					endforeach; ?>
				</ul>
			</div>
		</div>
	<?php endif; ?>
	<?php 
	/*
	<div class="click-dropdown">
		<a href="#"><?php esc_html_e('Authors','dfd') ?><span></span></a>
		<div>
			<ul class="filter-authors">
				<?php wp_list_authors(); ?>
			</ul>
		</div>
	</div>
	*/
	?>
	<?php get_template_part('templates/entry-meta/woo-top-link'); ?>
</div>