30 lines
936 B
PHP
30 lines
936 B
PHP
<?php
|
|
/* ---------------------------
|
|
ADMIN STYLES
|
|
---------------------------*/
|
|
|
|
// Amin Stylesheet
|
|
function metiers_du_patrimoine_custom_admin_stylesheet()
|
|
{
|
|
wp_enqueue_style('admin_styles', get_stylesheet_directory_uri() . '/css/admin-style.css');
|
|
}
|
|
|
|
add_action('admin_head', 'metiers_du_patrimoine_custom_admin_stylesheet');
|
|
|
|
/* ---------------------------
|
|
COMMENTS REMOVAL
|
|
---------------------------*/
|
|
|
|
function metiers_remove_meta_boxes()
|
|
{
|
|
# Removes meta from Posts #
|
|
// remove_meta_box('postexcerpt', 'post', 'normal');
|
|
// remove_meta_box('postcustom', 'post', 'normal');
|
|
// remove_meta_box('trackbacksdiv', 'post', 'normal');
|
|
remove_meta_box('commentstatusdiv', 'page', 'normal');
|
|
remove_meta_box('commentsdiv', 'page', 'normal');
|
|
remove_post_type_support('artisans', 'comments');
|
|
remove_post_type_support('chantiers', 'comments');
|
|
}
|
|
add_action('admin_init', 'metiers_remove_meta_boxes');
|