Skip to content

Instantly share code, notes, and snippets.

@rashmimalpande
Created September 25, 2017 12:45
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/4a6627a129e332eb4f5ba70fa1104f19 to your computer and use it in GitHub Desktop.
Save rashmimalpande/4a6627a129e332eb4f5ba70fa1104f19 to your computer and use it in GitHub Desktop.
ppublic function add_custom_html() {
global $post;
$product_id = $post->ID;
$ids = array( 780, 767, 643);
$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($ids as $id){
if( $product_id == $id ) {
echo $content;
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment