Skip to content

Instantly share code, notes, and snippets.

@samikeijonen
Last active June 6, 2018 07:12
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save samikeijonen/58b38c8dc94d6c27086260e1128f0dfc to your computer and use it in GitHub Desktop.
Save samikeijonen/58b38c8dc94d6c27086260e1128f0dfc to your computer and use it in GitHub Desktop.
Register page template in HC5
<?php
use function Hybrid\register_object_template;
add_action( 'hybrid/register_object_templates', function() {
register_object_template( 'example', [
'label' => __( 'Example' ),
'filename' => 'example.php'
] );
} );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment