Skip to content

Instantly share code, notes, and snippets.

View INDIAN2020's full-sized avatar

Gogula Sivannarayana INDIAN2020

View GitHub Profile
How to Use
Step 1.
Copy the custom_widget.php file and place it in your WordPress theme folder. Assuming WordPress is installed in the root of your server the file will be place in /wp-content/themes/yourtheme/
Step 2.
Open up functions.php and include the following piece of code somewhere in the file. include TEMPLATEPATH . '/custom_widget.php';
Step 3.
Edit the custom_widget.php file to suit your needs.
########################################
# Adjust Memory/Post/Execution/ Upload Size
########################################
php_value max_execution_time 3600
php_value upload_max_filesize 100M
php_value post_max_size 220M
php_value memory_limit 256M
########################################
# Display Errors: (Comment out for no Errors)
#301 Redirects for .htaccess
#Redirect a single page:
Redirect 301 /pagename.php http://www.domain.com/pagename.html
#Redirect an entire site:
Redirect 301 / http://www.domain.com/
#Redirect an entire site to a sub folder
Redirect 301 / http://www.domain.com/subfolder/
# Download and install xCode to install make.
# http://itunes.apple.com/us/app/xcode/id448457090?mt=12
# Don't forget to run "/Applications/Install Xcode.app"
# Open up your terminal, and follow the steps below
# by cutting pasting or typing the below in.
# The number sign indicates a comment.
# Make a temporary directory
mkdir temp
<?php
$facebook = new Facebook(array(
'appId' => 'YOUR_API_KEY',
'secret' => 'YOUR_API_SECRET',
'cookie' => true,
));
$fql = "SELECT page_id, name from page where name='Coke'";
<?php
require('facebook.php');
$facebook = new Facebook(array(
'appId' => 'YOUR_APP_ID',
'secret' => 'YOUR_APP_SECRET',
));
$cokeFans = $facebook->api('/cocacola');
<?php
$headers = apache_request_headers();
foreach ($headers as $header => $value) {
echo "$header: $value <br />\n";
}
?>
<?php
function percentChange($oldNos = 0, $newNos = 0) {
$scratchSheet = ($newNos + 0) - ($oldNos + 0);
return round((($scratchSheet / $oldNos) * 100),2);
}
?>
function createQR($url,$size ='150',$evLevel='L',$margin='0') {
$url = urlencode($url);
return '<img src="http://chart.apis.google.com/chart?chs=' . $size . 'x' . $size . '&cht=qr&chld=' . $evLevel . '|' . $margin . '&chl=' . $url . '" alt="QR code" width="' . $size . '" height="' . $size . '"/>';
}
echo createQR('http://www.wickedbrilliant.com',150);
pre.prettyprint .str { color: #859900 !important; }
pre.prettyprint .kwd { color: #268bd2 !important; }
pre.prettyprint .com { color: #cb4b16 !important; font-style: italic; }
pre.prettyprint .typ { color: #2aa198 !important; }
pre.prettyprint .lit { color: #dc322f !important; }
pre.prettyprint .pun { color: #2aa198 !important; }
pre.prettyprint .pln { color: #839496 !important; }
pre.prettyprint .tag { color: #6c71c4 !important; }
pre.prettyprint .atn { color: #268bd2 !important; }
pre.prettyprint .atv { color: #2aa198 !important; }