Skip to content

Instantly share code, notes, and snippets.

@zeropointdevelopment
zeropointdevelopment / code-snippet-1.php
Created December 27, 2013 05:57
[WordPress] Code from our blog post How to Disable Theme Switching - http://www.limecanvas.com/how-to-disable-theme-switching/
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]);
}
}
@zeropointdevelopment
zeropointdevelopment / code-snippet-1.php
Created December 27, 2013 05:59
[WordPress] Code from our blog post Stopping WordPress Media Attachment Comment Spamming - http://www.limecanvas.com/stopping-wordpress-media-attachment-comment-spamming/
/** 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 **/
@zeropointdevelopment
zeropointdevelopment / README.md
Last active January 1, 2016 12:09
[WordPress] Code from our blog post WordPress .htaccess on Zeus Server - http://www.limecanvas.com/wordpress-htaccess-on-zeus-server/

rewrite.script is the .htaccess alternative for Zeus Servers

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
/* IE10+ specific styles go here */
}
@zeropointdevelopment
zeropointdevelopment / conditional-ie.html
Last active January 3, 2016 02:19
[WordPress] Code for article: CSS Hacks for IE targeting only IE8, IE7 and IE6 - http://www.limecanvas.com/css-hacks-for-ie-targeting-only-ie8-ie7-and-ie6/
<!--[if lte IE 9]>
Your IE8 and below HTML code here.
Perhaps importing a specific style sheet.
<![endif]-->
@zeropointdevelopment
zeropointdevelopment / functions.php
Created March 3, 2014 05:24
Shortcode to output social media buttons.
// Social Media Buttons
function lc_social_media_buttons( $atts, $content = null ){
// get attributes
extract(shortcode_atts(array(
'align' => 'left',
'twitter' => '',
'facebook' => '',
'googleplus' => '',
'linkedin' => '',
'pinterest' => '',