Nov 11
icon1by ezuca |  Wordpress  | 2 comments
Wordpress Tip/Hack Generally, one of the annoying features of the popular blogging platform WordPress, is its automatic correction and presumed way of editing the HTML code you insert in creating your posts. For instance if you place a <br> tag in your HTML code, WordPress will then try to replace it with the <p> tag. Worse is that it sometimes add the closing tag, </p>, in the end of already closed tags with no substantial reasons when in fact you have already written the code correctly. The WordPress functions wpautop (which handles the automatic insertion of the paragraph or <p> tags) and the wptexturize (adds curly quotes and sometimes changes symbols in order to make it look “prettier” which later causes your output to behave unsually). If you are a person who often checks your site with the W3C's Markup and CSS standards, then those two functions will make your way a little bit harder in complying with those standards. So what can you do to avoid those unusual effects of the functions? One solution perhaps is to disable the two functions. This could be a harsh way but this will also yield better benefits on your part. The solution is here.

Open your theme's function.php file, and simply insert the follwing code between (or inside) <?php and ?>:

//disable auto p
remove_filter ('the_content', 'wpautop');

//disable wptexturize
remove_filter('the_content', 'wptexturize');

That's it! I hope you find this helpful.

Oct 7
icon1by ezuca |  Wordpress  | Leave a comment
Social Networking Icons Trackbacks are one way of telling the web authors that another site links back to one of their articles, posts and the like. This helps the authors know who is linking to their articles. WordPress happens to be one of the blogging platforms that support automatic pingbacks or trackbacks. Continue Reading...
Aug 31
icon1by ezuca |  Wordpress  | 3 comments
Wordpress Themes No doubt that WordPress is the leading blogging platform online these days. WordPress can be run on both free and hosted version. Its practical blogging functionalities and great usability such as being user-friendly make WordPress the nicest blogging platform a user can have. This unparalleled publishing platform is free for all. Thus anyone can definitely enjoy the use of this platform. Continue Reading...