Skip to content

Instantly share code, notes, and snippets.

@rashmimalpande
Created September 25, 2017 07:48
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rashmimalpande/c3855aa4bf2d09c8c0c96740a20d50e4 to your computer and use it in GitHub Desktop.
Save rashmimalpande/c3855aa4bf2d09c8c0c96740a20d50e4 to your computer and use it in GitHub Desktop.
public function add_custom_html() {
global $post;
$product_id = $post->ID;
$categories = get_the_terms( $product_id, 'product_cat' );
if( empty ( $categories ) ){
return;
}
$content = "
<table>
<tr>
<th></th>
<th>Small</th>
<th>Medium</th>
<th>Large</th>
</tr>
<tr>
<td>USA</td>
<td>2-4</td>
<td>6-8</td>
<td>9-12</td>
</tr>
<tr>
<td>UK</td>
<td>4-6</td>
<td>8-10</td>
<td>12-14</td>
</tr>
<tr>
<td>India</td>
<td>2-4</td>
<td>6-8</td>
<td>10-12</td>
</tr>
</table>
";
foreach($categories as $cat){
if( 'men' == $cat->slug ) {
echo $content;
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment