Change background color of subpages
Another solution could be you register a meta box for the project pages which lets you type in whatever class name you want for each page… function add_project_page_metabox() { add_meta_box( ‘project_page_meta’, // $id ‘Project Meta’, // $title ‘ppm_callback’, // $callback ‘page’, // $post_type ‘side’, // $context ‘low’ // $priority ); } add_action( ‘admin_init’, ‘add_project_page_metabox’ ); … Read more