Skip to content

Instantly share code, notes, and snippets.

@anisur2805
Created June 2, 2023 03:13
Show Gist options
  • Save anisur2805/f1d04306a3a62c88b9ea4f6982e1e12c to your computer and use it in GitHub Desktop.
Save anisur2805/f1d04306a3a62c88b9ea4f6982e1e12c to your computer and use it in GitHub Desktop.
Create a page template from plugin, sometimes we need to add a page template from our own plugin, this code will help to create.
<?php
function custom_template_include($template) {
if (is_page('test')) { // your desiger page
$new_template = IC_CORE_PATH . '/templates/custom-template.php'; // your desier file
if (file_exists($new_template)) {
return $new_template;
}
}
return $template;
}
add_filter('template_include', 'custom_template_include');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment