mirror of
https://github.com/kremalicious/krtmn.git
synced 2024-12-22 09:13:25 +01:00
19 lines
372 B
PHP
19 lines
372 B
PHP
<?php
|
|
|
|
// Make sure we're in YOURLS context
|
|
if( !defined( 'YOURLS_ABSPATH' ) ) die();
|
|
|
|
// Display page content. Any PHP, HTML and YOURLS function can go here.
|
|
$url = YOURLS_SITE . '/examplepage';
|
|
|
|
yourls_html_head( 'examplepage', 'Example page' );
|
|
|
|
?>
|
|
|
|
<p>This is an example page. Its URL is simply <?php echo $url; ?></p>
|
|
|
|
<?php
|
|
|
|
yourls_html_footer();
|
|
|