This file contains hidden or 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
html { | |
box-sizing: border-box; | |
} | |
*, *:before, *:after { | |
box-sizing: inherit; | |
} |
This file contains hidden or 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
function ms_modify_user_columns($column_headers) { | |
$column_headers['membership'] = 'Membership'; | |
return $column_headers; | |
} | |
add_action('manage_users_columns','ms_modify_user_columns'); | |
function ms_get_user_membership($empty = '', $column_name, $id) { | |
if( $column_name == 'membership' ) { |
This file contains hidden or 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
function modify_contact_methods($profile_fields) { | |
// Remove old fields | |
unset($profile_fields['twitter']); | |
unset($profile_fields['googleplus']); | |
unset($profile_fields['facebook']); | |
return $profile_fields; | |
} | |
add_filter('user_contactmethods', 'modify_contact_methods'); |
This file contains hidden or 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
// Move Yoast to bottom | |
function yoasttobottom() { | |
return 'low'; | |
} | |
add_filter( 'wpseo_metabox_prio', 'yoasttobottom'); |
This file contains hidden or 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
<picture> | |
<source type="image/svg+xml" srcset="path/to/image.svg"> | |
<img src="path/to/fallback.png" alt="Image description"> | |
</picture> |
This file contains hidden or 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 echo apply_filters('the_content', get_post_meta($post->ID, 'meta_box_name', true)); ?> |
This file contains hidden or 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
p:before { | |
content: ""; | |
width: 6em; | |
display: block; | |
overflow: hidden; | |
} |
This file contains hidden or 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
Imsanity https://wordpress.org/plugins/imsanity/ | |
Custom Sidebars https://wordpress.org/plugins/custom-sidebars/ | |
Black Studio TinyMCE Widget https://wordpress.org/plugins/black-studio-tinymce-widget/ | |
WordPress Post Type Archive Links https://wordpress.org/plugins/post-type-archive-links/ | |
Eww Image Optimizer https://wordpress.org/plugins/ewww-image-optimizer/ (disallowed by wp-engine) | |
Autoptimize https://wordpress.org/support/view/plugin-reviews/autoptimize | |
PageSpeed Insights https://wordpress.org/plugins/google-pagespeed-insights/screenshots/ |
NewerOlder