parent == 0) { return $thematique; } else { return get_term($thematique->parent, 'thematiques'); } } // DOES THE SAME THING AS ABOVE BUT RENAMED function getMainThematique($thematique) { if (!$thematique) { return null; } if ($thematique->parent == 0) { return $thematique; } else { return get_term($thematique->parent, 'thematiques'); } } // TO GET ARCHIVE RELATED PAGES BY TEMPLATE function get_page_by_template($template = '') { $args = array( 'meta_key' => '_wp_page_template', 'meta_value' => $template ); return get_pages($args); } function show_post_type_label_name($post_type) { switch ($post_type) { case 'questions': return __("Question", "homegrade-theme__texte-backoffice"); case 'conseils': return __("Conseil", "homegrade-theme__texte-backoffice"); case 'page': return __("Page", "homegrade-theme__texte-backoffice"); case 'post': return __("News", "homegrade-theme__texte-backoffice"); case 'jobs': return __("Offre d'emploi", "homegrade-theme__texte-backoffice"); default: return null; } }