Blog

Execute PHP code in Text Widget without using Plugin

Simply add filter hooks in your theme’s function.php file. add_filter(‘widget_text’,’execute_php’,100); function execute_php($html){ if(strpos($html,”<“.”?php”)!==false){ ob_start();…

Text Outline – CSS3

If you only want to style the input fields of type=”text”: .text-outline{ text-shadow:-1px -1px…

is_page() – WordPress

Display any specific elements on a page, just define page ID in the below…