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
<h1><?php | |
$c = Page::getCurrentPage(); | |
$nh = Loader::helper('navigation'); | |
// concrete5 第4階層以降であれば、第3階層 のページタイトルを表示させる。 | |
// [現在のページタイトル] - [第3階層のページタイトル] | |
// ページ属性 display_secondary_title がチェックされていれば第3階層のタイトルを表示しない | |
// $trail [0] はトップ | |
// $trail [1] は第2階層 | |
echo h($c->getCollectionName()); | |
if (!$c->getAttribute('display_secondary_title')){ |
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 | |
/** | |
* WordPress Query Comprehensive Reference | |
* Compiled by luetkemj - luetkemj.com | |
* Japanese translated by hissy | |
* | |
* CODEX: http://wpdocs.sourceforge.jp/%E9%96%A2%E6%95%B0%E3%83%AA%E3%83%95%E3%82%A1%E3%83%AC%E3%83%B3%E3%82%B9/WP_Query#.E3.83.91.E3.83.A9.E3.83.A1.E3.83.BC.E3.82.BF | |
* Source: https://core.trac.wordpress.org/browser/tags/3.9/src/wp-includes/query.php | |
* Original: https://gist.github.com/luetkemj/2023628/9e911982440141a13cb1dd8ba1ad6b35cd7bbdd7 | |
*/ |