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 | |
/** | |
* The template for displaying comments | |
* | |
* This is the template that displays the area of the page that contains both the current comments | |
* and the comment form. | |
* | |
* @link https://developer.wordpress.org/themes/basics/template-hierarchy/ | |
* | |
* @package WordPress |
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 | |
// factory.php | |
$dashboard = new q\user\controller\dashboard(); | |
$dashboard->hooks(); | |
// dashboard.php | |
namespace q\theme\child\controller; |
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 | |
// factory.php | |
$page = new q\theme\child\controller\page(); | |
$page->hooks(); | |
// page.php | |
namespace q\theme\child\controller; |
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 | |
// factory.php | |
$page = new q\theme\child\controller\page(); | |
$page->hooks(); | |
// page.php | |
namespace q\theme\child\controller; |
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 | |
// factory.php | |
$config = new q\theme\child\core\config(); | |
$config->hooks(); | |
// config.php | |
namespace q\theme\child\core; |
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 | |
$ui = new ui(); | |
$ui->hooks(); | |
class ui { | |
function __construct(){} | |
function hooks() { |
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
<div> | |
<h1>ONE: First loop</h1> | |
<h5>ONE: Title One</h5> | |
<h5>ONE: Title Two</h5> | |
</div> | |
<div> | |
<h1>ONE: Second loop</h1> | |
<h5>ONE: TITLE ONE</h5> | |
<h5>ONE: TITLE TWO</h5> |
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
{~ ui~loop {+ | |
<div> | |
<h1>ONE: First loop</h1> | |
{@ {: one :} | |
<h5>{{ title }}</h5> | |
@} | |
</div> | |
<div> | |
<h1>ONE: Second loop</h1> | |
{@ {: one :} |
NewerOlder