Insert a picture in a table

To put a repeating pic in table:   <table style=”background-image:url(https://kawstov.com/downloads/noisy_grid);”> <tr> <th>Table header</th><th>Table header</th> </tr> <tr> <td>Table cell 1</td><td>Table cell 2</td> </tr> </table>   Source:  http://www.quackit.com/html/codes/tables/html_table_background.cfm  

Hide JetPack’s ‘Related Post’ feature in WordPress

I found this link useful in doing that. I removed the ‘Related Posts’ from my posts by adding the following code to the bottom of my theme’s functions.php function jetpackme_remove_rp() { $jprp = Jetpack_RelatedPosts::init(); $callback = array( $jprp, ‘filter_add_target_to_dom’ ); remove_filter( ‘the_content’, $callback, 40 ); } add_filter( ‘wp’, ‘jetpackme_remove_rp’, 20 ); That’s all.

Top