Created
April 25, 2021 11:11
-
-
Save ikamal7/49309eda46f243cbcc7180139d10e49b to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
// Get your Page template link By template file | |
function get_page_template_link($template_file) { | |
$archive_page = get_pages( | |
array( | |
'meta_key' => '_wp_page_template', | |
'meta_value' => $template_file, | |
) | |
); | |
$archive_id = $archive_page[0]->ID; | |
return get_permalink( $archive_id ); | |
} | |
// Use | |
// get_page_template_link('page-templates/template.php') |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment