Adding LinkedIn Comments Box on Wordpress
During time off, I'm working on Sensq, a LinkedIn-based 3rd party comment plugin, for our projects that were hosted with static website. Previously, I had shown how to add the LinkedIn Comments Box into Tumblr blog. In this post, I will show you how to add the LinkedIn Comments Box into Wordpress blog.
First, you need to login to Wordpress Admin dashboard. Then, go to your Theme Editor: Apperance > Theme Editor.
You need to find your wp-comments.php file. Depends on your wordpress theme, mine was near: framework > views > ethos > wp-comments.php.
Below is my modified wp-comments.php file with explanations:
<?php .... $permalink = get_permalink(); .... ?><?php /* */ ?><div id="comments" class="x-comments-area"> <iframe frameborder="0" style="border:0" src="https://app.sensq.com/#<?php echo $permalink?>" width="100%" height="600" allowfullscreen></iframe> </div>








