Skip to content

Instantly share code, notes, and snippets.

View ScarletPonytail's full-sized avatar

ScarletPonytail ScarletPonytail

View GitHub Profile
@ScarletPonytail
ScarletPonytail / text
Last active September 27, 2017 12:56
WordPress - Plugins
For contact forms:
- Ninja Forms (By The WP Ninjas)
- reCAPTCHA for Ninja Forms (Aman Saini)
- Contact Form 7 (By Takayuki Miyoshi)
- Contact Form 7 Honeypot (Nocean)
- Contact Form 7 - reCAPTCHA (By iambriansreed)
- Invisible reCaptcha for WordPress - (By Mihai Chelaru)
- Bootstrap for Contact Form 7 (By Felix Arntz)
@ScarletPonytail
ScarletPonytail / functions.php
Last active June 1, 2017 13:32
CSS - Spinny Social Icons
// Add Font Awesome for social icons
function font_awesome() {
echo '<link href="//maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css" rel="stylesheet" />';
}
add_action('wp_head', 'font_awesome');
@ScarletPonytail
ScarletPonytail / footer.php
Last active March 20, 2019 15:45
Wordpress - Get Menu
@ScarletPonytail
ScarletPonytail / gist:e53b50601b693891fd6a21e376ecfe30
Last active September 14, 2018 11:55
Wordpress - Home URL PHP Code
<?php echo esc_url( get_site_url() ); ?>
<?php echo esc_url( home_url() ); ?>
@ScarletPonytail
ScarletPonytail / text.txt
Last active March 21, 2017 15:01
Wordpress - Captcha Shortcode
// Contact Form 7 reCAPTCHA
[recaptcha]
// Really Simply Captcha Plugin
<p>To prove your humanity, please enter the text in the box.</p>
<p>[captchac captcha-157][captchar captcha-157]</p>