This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html> | |
<head> | |
<!-- | |
Author : TechnoKnol | |
Blog : http://technoknol.blogspot.com | |
Date : 17 Jan 2014 | |
--> | |
<meta name="description" content="Infinite Width Bars,full width bars,css3 bars,full width navigation bars" /> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/*** ADD THE FOLLOWING CODE INTO FUNCTIONS.PHP ***/ | |
// add a link to the WP Toolbar | |
function custom_toolbar_link($wp_admin_bar) { | |
$args = array( | |
'id' => 'wpbeginner', | |
'title' => 'Search WPBeginner', | |
'href' => 'https://www.google.com:443/cse/publicurl?cx=014650714884974928014:oga60h37xim', |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
// To Disable directory browsing in Wordpress | |
// Just one line in your .htaccess file | |
// in your website ROOT | |
Options -Indexes |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/******************************** | |
This code will allow you to create your own shortcode. | |
*************************************/ | |
// SHORTCODE FOR GOOGLE ADSENSE |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/*** ADD THE FOLLOWING CODE INTO FUNCTIONS.PHP ***/ | |
// add a link to the WP Toolbar | |
function custom_toolbar_link($wp_admin_bar) { | |
$args = array( | |
'id' => 'wpbeginner', | |
'title' => 'Search WPBeginner', | |
'href' => 'https://www.google.com:443/cse/publicurl?cx=014650714884974928014:oga60h37xim', |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// To Disable directory browsing in Wordpress | |
// Just one line in your .htaccess file | |
// in your website ROOT | |
Options -Indexes | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/* ********************************************************* | |
Warnings | |
Requires you know the administrator username. | |
It updates the administrator password and sends an email to the administrator's email address. | |
If you don't receive the email, the password is still changed. | |
You do not need to be logged in to use it. If you could login, you wouldn't need the script. | |
Place this in the root of your WordPress installation. Do not upload this to your WordPress Plugins directory. | |
Delete the script when you are done for security reasons. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
// Shortcode Working in PHP file | |
// Method 1 : | |
echo do_shortcode ('[easingsliderlite]') ; | |
// Method 2 : // easingsliderlite() is a function used by shortcode [easingsliderlite] | |
if ( function_exists( "easingsliderlite" ) ) { easingsliderlite(); } | |
// ADD SHORTCODE WORKING IN TEXT_WIDGET |
OlderNewer