wordpress page name code example
Example 1: get template name wordpress
get_page_template_slug()
if (get_page_template_slug() =='page-workflow.php' ) {
//stuff
}
Example 2: get page name wp
$slug = basename(get_permalink());
//or
$wp_query->queried_object->post_name
Example 3: wordpress define template name
/*on top of Php file add the below line to make as custom template*/
<?php /* Template Name: Custom template name */ ?>