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
//Template Replacement | |
add_action("template_redirect", 'custom_template_redirect'); | |
function custom_template_redirect() { | |
global $wp; | |
$plugindir = dirname( __FILE__ ); | |
//A Custom Post Type | |
if ($wp->query_vars["post_type"] == 'product') { | |
$templatefilename = 'single-product.php'; |
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
if (!defined('MYPLUGIN_THEME_DIR')) | |
define('MYPLUGIN_THEME_DIR', ABSPATH . 'wp-content/themes/' . get_template()); | |
if (!defined('MYPLUGIN_PLUGIN_NAME')) | |
define('MYPLUGIN_PLUGIN_NAME', trim(dirname(plugin_basename(__FILE__)), '/')); | |
if (!defined('MYPLUGIN_PLUGIN_DIR')) | |
define('MYPLUGIN_PLUGIN_DIR', WP_PLUGIN_DIR . '/' . MYPLUGIN_PLUGIN_NAME); | |
if (!defined('MYPLUGIN_PLUGIN_URL')) |
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
/* Increase WordPress Memory Allocation */ | |
define( 'WP_MEMORY_LIMIT', '128M' ); |
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
define('FORCE_SSL_ADMIN' , true); |
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
define('DISALLOW_FILE_EDIT' , true); |
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
//* Add Dashboard Column Settings | |
function bm_custom_dashboard_columns() { | |
add_screen_option( | |
'layout_columns', | |
array( | |
'max' => 2, | |
'default' => 1 | |
) | |
); | |
} |
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 | |
/** | |
* @package HSTS | |
* @version 1.0 | |
*/ | |
/* | |
Plugin Name: HSTS - HTTP Strict Transport Security enforcement plugin | |
Author: [email protected] | |
Version: 1.0 | |
Author URI: https://www.insecure.ws |
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
add_action( 'wp_enqueue_scripts', 'load_dashicons_front_end' ); | |
function load_dashicons_front_end() { | |
wp_enqueue_style( 'dashicons' ); | |
} |
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
/** | |
* Additional Styles | |
* @since 1.0.0 | |
*/ | |
function font_styles() { | |
if ( !is_admin() ) { | |
// register styles | |
wp_register_style('googlefonts', 'http://fonts.googleapis.com/css?family=Oswald:400,300,700', array(), false, 'all'); |
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 | |
/* Remove Thesis Attribution Link (Developer License Holders Only) */ | |
remove_action('thesis_hook_footer', 'thesis_attribution'); |
OlderNewer