rewrite.script is the .htaccess alternative for Zeus Servers
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
// Social Media Buttons | |
function lc_social_media_buttons( $atts, $content = null ){ | |
// get attributes | |
extract(shortcode_atts(array( | |
'align' => 'left', | |
'twitter' => '', | |
'facebook' => '', | |
'googleplus' => '', | |
'linkedin' => '', | |
'pinterest' => '', |
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 lte IE 9]> | |
Your IE8 and below HTML code here. | |
Perhaps importing a specific style sheet. | |
<![endif]--> |
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
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) { | |
/* IE10+ specific styles go here */ | |
} |
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
/** Stop comments being used on Media Files **/ | |
add_filter( 'comments_open', 'stopMediaComments', 10, 2 ); | |
function stopMediaComments( $open, $post_id ) { | |
$post = get_post( $post_id ); | |
if ( 'attachment' == $post->post_type ) | |
$open = false; | |
return $open; | |
} | |
/** This is used to get around non-native WordPress plugins **/ |
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('admin_init', 'lc_disable_theme'); | |
function lc_disable_theme() { | |
global $menuitem, $userdata; | |
get_currentuserinfo(); | |
if ($userdata->ID != 1) { | |
unset($menuitem['themes.php'][5]); | |
unset($menuitem['themes.php'][15]); | |
} | |
} |
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
<Files ~ ".*..*"> | |
Order Allow,Deny | |
Deny from all | |
</Files> | |
<FilesMatch ".(jpg|jpeg|jpe|gif|png|tif|tiff)$"> | |
Order Deny,Allow | |
Allow from all | |
</FilesMatch> |
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
/* Enable alternative WP Cron */ | |
define('ALTERNATE_WP_CRON', 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
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> | |
<html xmlns="http://www.w3.org/1999/xhtml"> | |
<head> | |
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> | |
<title>My New App</title> | |
<link href="css/styles.css" rel="stylesheet" type="text/css" media="screen" /> | |
</head> | |
<body> | |
<div id="wrapper"> | |
<div id="main"> |
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
RewriteEngine On | |
RewriteCond %{HTTP_REFERER} !^http://(.+\.)?mysite\.com/ [NC] | |
RewriteCond %{HTTP_REFERER} !^$ | |
RewriteRule .*\.(jpe?g|gif|bmp|png)$ /images/hotlinking-thief.jpg [L] |
NewerOlder