Skip to content

Instantly share code, notes, and snippets.

View scarstens's full-sized avatar
🌟
Automating workflows.

Seth Carstens scarstens

🌟
Automating workflows.
View GitHub Profile
@scarstens
scarstens / xml_entities.function.php
Created April 10, 2015 17:57
Function to use with SimpleXML that allows you to properly encode all XML values, use in an example like $setting->addChild( $name, xml_entities($v) );
<?php
//for use with SimpleXML objects
//ie $setting->addChild( $name, xml_entities($v) );
if(!function_exists('xml_entities')) {
function xml_entities( $string ) {
return strtr(
$string,
array(
"<" => "&lt;",
">" => "&gt;",
@scarstens
scarstens / remove-action-by-class.function.php
Created March 5, 2015 23:54
remove_action_by_class - Remove actions that are created in WordPress by the add_action hook, but can't be removed with the remove_action hook because an instance of a class created the hook with no way to access it. Use to remove custom actions created by class instances.
<?php
/**
* Function remove_action_by_class
* Used to remove notices and nags or other class actions added with class instances (unable to remove with remove_action)
*
* @param $hook_name
* @param $class_and_function_list
* @param int $priority
*
* ex use case:
@scarstens
scarstens / function-override-with-class.test.php
Created February 21, 2015 01:53
Example of overriding a "root level" function using a custom class. The example showcases how to override WordPress's pluggable.php function wp_mail, with a custom function.
<?php
class wpMandrill{
static function load(){
function wp_mail(){
echo 'custom mail';
}
}
}
@scarstens
scarstens / load-plugin-last.partial.php
Created December 20, 2014 23:37
Use this in your plugin to make sure it loads last
function my_plugin_load_last()
{
$path = str_replace( WP_PLUGIN_DIR . '/', '', __FILE__ );
if ( $plugins = get_option( 'active_plugins' ) ) {
if ( $key = array_search( $path, $plugins ) ) {
array_splice( $plugins, $key, 9999 );
array_unshift( $plugins, $path );
update_option( 'active_plugins', $plugins );
}
}
@scarstens
scarstens / comingsoon.index.html
Created September 24, 2014 00:49
Coming soon HTML CSS3 and JS all inline in one file for newly created websites on servers.
<!DOCTYPE html>
<html>
<head>
<title>Website Coming Soon</title>
<link href='http://fonts.googleapis.com/css?family=Lato:300,400' rel='stylesheet' type='text/css'>
<style id="animations">
/* Style for image */
.soon
{
-webkit-transition: opacity 2.5s ease-in;
@scarstens
scarstens / wordpress.auto-login.partial.php
Last active August 29, 2015 14:06
WordPress auto login hack used when you have FTP access but no WordPress login, chooses the first admin and logs you in as that when you add ?admin=login to the URL. DONT FORGET TO REMOVE THIS WHEN YOUR DONE!
/**
* Script to enabled temporary access to first admin account auto login
*/
function auto_login() {
if ($_GET['admin']=='login') {
$user_query = new WP_User_Query( array( 'role' => 'Administrator' ) );
$user_id = $user_query->results[0]->ID;
wp_set_current_user($user_id, $user_login);
wp_set_auth_cookie($user_id);
do_action('wp_login', $user_login);
@scarstens
scarstens / seths-wordpress-plugin-boiler-plate.plugin.php
Created August 19, 2014 19:33
Seths Plugin Boiler Plate Idea - this is the "no singletons" version
<?php
/**
* Plugin Name: Fansided VIP
* Plugin URI: http://fansided.com/
* Description: All the amazing business logic Fansided provides to WordPress installs.
* Author: sethcarstens
* Version: 1.0.0
* Author URI: http://www.linkedin.com/in/sethcarstens/
* License: Privately Copyright - do not redistribute.
* Text Domain: fs_vip
@scarstens
scarstens / print_style_hooks.wordpress.php
Created August 15, 2014 03:48
WordPress php code to print a list of hook-action-styles from the enqueue method.
<?php
add_action('wp_print_styles','check_styles', 1);
function check_styles(){
$hook_name = 'wp_enqueue_scripts';
global $wp_filter;
var_dump( $wp_filter[$hook_name] );exit;
}
@scarstens
scarstens / wordpress.function-load_classes.php
Created July 13, 2014 07:45
loads classes from a folder
/**
* Returns array of features, also
* Scans the plugins subfolder "/classes"
*
* @since 0.1
* @return void
*/
protected function load_classes() {
// load all files with the pattern *.php from the directory inc
@scarstens
scarstens / function.callFunctionFromString.js
Created June 21, 2014 00:28
Call javascript function using a javascript string as a parameter
//enable callFunction function
function callFunction(func){
this[func].apply(this, Array.prototype.slice.call(arguments, 2));
}
/* use case, calling many function dynamically
jQuery.each(filterGroups, function(index, value){
if(value.onoff){
if(maybe_debug) console.log(index,':',value);callFishFinderFunction('applyFilter',index);}
});
*/