Function automatically creates and applies filters from all taxonomies that apply to CPT
Function automatically creates and applies filters from all taxonomies that apply to all custom post types which use them This in short adds filter selects to the post screens in the WordPress admin. function todo_restrict_manage_posts() { global $typenow; $args=array( ‘public’ => true, ‘_builtin’ => false ); $post_types = get_post_types($args); if ( in_array($typenow, $post_types) ) {…
DetailsChange CSS in WordPress Admin
function customAdmin() {
$url = get_settings('siteurl');
$url = $url . '/wp-content/themes/MYTHEME/styles/wp-admin.css';
echo '
';
}
add_action('admin_head', 'customAdmin');
Remove AddThis from Custom Post Types
Add this to functions file to remove AddThis from single Custom Post Type pages.
//Exclude AddThis widgets from anything other than posts
add_filter('addthis_post_exclude', 'addthis_post_exclude');
function addthis_post_exclude($display) {
if ( !is_singular( 'post' ) )
$display = false;
return $display;
}
urbanlandc.org
Thanks to a great working relationship with Matt Craine at mattcraine.com who does amazing work with SEO, Brand management and much more.. I was able to do the New Web Design and Web Development for Urban Land Conservancy. They were on a special hosted CMS that was difficult to update and not very SEO friendly.…
eatlikeagoddess.com
Sandy wanted a page that was easier to read than her existing site. Keeping the same design but giving it a refresh and a new background makes it much easier to read.
Nancy P’s Cafe & Bakery
This was a small HTML site that has contact information and Menu.