Return to Snippet

Revision: 66235
at April 2, 2014 11:24 by kaynechu


Initial Code
<?php $taxonomyID = get_queried_object()->term_id;

//$metaname=get_field('meta_name', 'product_cat_' . $taxonomyID);
$metacontent=get_field('meta_content', 'product_cat_' . $taxonomyID);?>
<?php if ($metacontent) { ?>
	<meta name="description" content="<?php echo $metacontent; ?>"/>
<?php } else { ?>
	<?php woo_meta(); ?>
<?php } ?>

Initial URL


Initial Description
This example for meta tags

Initial Title
Display Custom Field for Product Categories

Initial Tags


Initial Language
PHP