How to remove curly quotes from WordPress

The apostrophe should be straight not curly in WordPress. Just Open your functions.php file from your theme folder. If you did not created functions.php file then you can paste this code in your header.php file. remove_filter(‘comment_text’, ‘wptexturize’); remove_filter(‘the_title’, ‘wptexturize’); remove_filter(‘the_content’, … Continue reading

9 Best professional online networking web sites

1. Network: Linkedin Registered Members: LinkedIn has 30 million professional members from around the world representing 150 industries. 2. Network: Ecademy Registered Members: Membership numbers aren’t disclosed. 3. Network: Xing Registered Members: 6 million members, mainly Europe (Germany) and China. … Continue reading

How to exclude images from wordpress post

In one of project I got requirement of to exclude images from WordPress post. I written following code for excluding the image from Post Above line I added in showing post without image. <?php $FormatedContent = content_with_formatting(); $content = the_content(); … Continue reading

How to start Activemq with XML configuration file

You can download Aapache activeMQ from following URL; http://activemq.apache.org/activemq-530-release.html Choose the your OS(Linux/Windows). After downloading apache-activemq-5.3.0-bin.zip. Extract the ActiveMQ. Open command prompt and go to activeMQ/bin directory and run the “activemq” command. ActiveMQ will start without configration. If you are … Continue reading