PHP loop error

Hi i am receiving this message when i try to upload my theme to wordpress:

Fatal error: ‘continue’ not in the ‘loop’ or ‘switch’ context in /var/www/groce.dk/public_html/wp-content/themes/storex/widgets/class-pt-widget-collapsing-categories.php on line 213

	/* Get link to category & Adding extra data to cat anchor */
	$term_link = get_term_link( (int) $cat->term_id, $cat->taxonomy );
	if ( is_wp_error( $term_link ) ) {
    	continue;
	}

Line 213 is: continue;

I hope you can provide some kind of help

The error states it pretty plain. You can only use “continue” in either a loop or a switch statement. There isn’t enough code provided to tell, but I suspect it isn’t used in either a switch or a loop.

If it were me, I would [php]//comment it out, and continue.[/php]

Sponsor our Newsletter | Privacy Policy | Terms of Service