Show custom field if it exists, and show different in woocommerce category
-
Hello!
I want show woocommerce category custom field content if it exist, and show something different if not.
I fount this code and it works for posts. How can I change it to work for woocommerce categories?
<?php
if ( get_post_meta( $post->ID, ‘randomname’, true ) ) {
echo get_post_meta( $post->ID, ‘randomname’, true );
} else {
echo ‘<div class=”name”>content</div>’;
}
?>`
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
- The topic ‘Show custom field if it exists, and show different in woocommerce category’ is closed to new replies.