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 | |
// must be placed under wp-content/mu-plugins/ | |
// GNU GPL 3.0 Licence | |
// Digital Ocean created it, but WordPress is not their father's property | |
// hence DMCA safe harbour exists | |
// if they files DMCA, we will file a simple civil case for abusing law from Bombay High Court | |
// for abusing the Power of Law | |
// hence Github can not delete | |
// hence you should kiss me | |
// hence you might get hacked if you are not sure what it is |
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
// modify and use within php opening and closing (closing may be not required depending on template) | |
// add_sitelinks_search_box just a name | |
// change pub-ABCDEFGH:1234567890 to real value | |
// PHP_EOL is used to find the newline character in a cross-platform-compatible way | |
// check your source code to make sure, some other plugin is not echoing a different "target" | |
// target is Google | |
// use site url instead of "url": "' . get_site_url() . '/", | |
// it will decrease the burden of one PHP call | |
// nginx php5-fpm compatible | |
// Genesis compatible (use php opening and closing for using with Genesis Simple Hooks) |
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
license: gpl-3.0 |
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
#! /bin/bash | |
# A modification of Dean Clatworthy's deploy script as found here: https://github.com/deanc/wordpress-plugin-git-svn | |
# The difference is that this script lives in the plugin's git repo & doesn't require an existing SVN repo. | |
# main config | |
PLUGINSLUG="camptix-payfast-gateway" | |
CURRENTDIR=`pwd` | |
MAINFILE="camptix-payfast.php" # this should be the name of your main php file in the wordpress plugin | |
# git config |
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
.avatar:hover{ | |
border-radius: 50% 50% 50% 50%; | |
transform: rotate(0deg) scale(0.67) skew(1deg) translate(0px); | |
-webkit-transform: rotate(0deg) scale(0.67) skew(1deg) translate(0px); | |
-moz-transform: rotate(0deg) scale(0.67) skew(1deg) translate(0px); | |
-o-transform: rotate(0deg) scale(0.67) skew(1deg) translate(0px); | |
-ms-transform: rotate(0deg) scale(0.67) skew(1deg) translate(0px); | |
} | |
// How To Make Rounded Avatars http://wp.me/p1lTu0-9VQ | |
.avatar { |
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 # -*- coding: utf-8 -*- | |
/** | |
* Plugin Name: Defer Contact Form 7 Scripts | |
* Description: Adds <code>defer='defer'</code> to enqueued javascripts. | |
* Version: 1.0 | |
* Required: 3.3 | |
* Author: Fuxia Scholz | |
* Author URI: https://fuxia.me | |
* License: GPL | |
* License URI: http://www.gnu.org/copyleft/gpl.html |