shortcode table
some table here
// Add Shortcode
function custom_shortcode() {
<table class="nemu-tablepress">
<tbody>
<tr class="tr-style">
<th class="th-style">Product Name</th>
<th class="th-style">Brand Name</th>
<th class="th-style">Product Price</th>
</tr>
<tr>
<td class="td-style"><a href="http://amzn.to/2vyLsgg">Rockford Fosgate R165X3 Prime</a></td>
<td class="td-style">Rockford Fosgate</td>
<td class="td-style"><a href="http://amzn.to/2vyLsgg">Check Price</a></td>
</tr>
<tr>
<td class="td-style"><a href="http://amzn.to/2hVqGEj"> Polk Audio DB6501</a></td>
<td class="td-style">Polk Audio</td>
<td class="td-style"><a href="http://amzn.to/2hVqGEj">Check Price</a></td>
</tr>
<tr>
<td class="td-style"><a href="http://amzn.to/2fCc3VJ"> BOSS AUDIO CH6530</a></td>
<td class="td-style">BOSS</td>
<td class="td-style"><a href="http://amzn.to/2fCc3VJ">Check Price</a></td>
</tr>
<tr>
<td class="td-style"><a href="http://amzn.to/2hWavH2"> Pioneer TS-A1685R</a></td>
<td class="td-style">Pioneer</td>
<td class="td-style"><a href="http://amzn.to/2hWavH2">Check Price</a></td>
</tr>
</tbody>
</table>
}
add_shortcode( '', 'custom_shortcode' );