コード例 #1
0
ファイル: index.php プロジェクト: schiz/scrollax
<?php

/**
 * BuddyPress Template Forum Index
 *
 * @package missframework
 */
global $irish_framework_params;
get_header();
$layout = new miss_page_layout($layout = miss_page_layout(), $location = 'views/buddypress/forums', $type = 'forum', $template = 'index');
$layout->miss_render_page_layout();
get_footer();
コード例 #2
0
ファイル: notifications.php プロジェクト: schiz/scrollax
<?php

/**
 * BuddyPress Template Members Notifications Settings
 *
 * @package missframework
 */
global $irish_framework_params;
get_header();
$layout = new miss_page_layout($layout = miss_page_layout(), $location = 'views/buddypress/members', $type = 'settings', $template = 'notifications');
$layout->miss_render_page_layout();
get_footer();
コード例 #3
0
ファイル: archive-news.php プロジェクト: schiz/scrollax
<?php

/**
 * Archive Template
 *
 * @package IrishMiss
 * @package Startup
 */
global $irish_framework_params, $post;
get_header();
//miss_archive();
$layout = new miss_page_layout($layout = miss_page_layout(), $location = 'views/loops', $type = 'loop', $template = 'news');
$layout->miss_render_page_layout();
get_footer();
コード例 #4
0
ファイル: home.php プロジェクト: schiz/scrollax
<?php

/**
 * BuddyPress Template Members Index
 *
 * @package missframework
 */
global $irish_framework_params;
get_header();
$layout = new miss_page_layout($layout = miss_page_layout(), $location = 'views/buddypress/members', $type = 'members', $template = 'home');
$layout->miss_render_page_layout();
get_footer();
コード例 #5
0
ファイル: page.php プロジェクト: schiz/scrollax
<?php

/**
 * Page Template
 *
 * @package IrishMiss
 * @package Startup
 */
global $irish_framework_params;
get_header();
$layout = new miss_page_layout($layout = miss_page_layout(), $location = 'views/containers', $type = 'content', $template = 'single');
$layout->miss_render_page_layout();
get_footer();
コード例 #6
0
<?php

/**
 * Single Template
 *
 * @package MissFramework
 * @subpackage StartUp Theme
 */
global $irish_framework_params;
get_header();
$layout = new miss_page_layout($layout = miss_page_layout(), $location = 'views/single', $type = 'single', $template = 'gallery');
$layout->miss_render_page_layout();
get_footer();
コード例 #7
0
ファイル: home.php プロジェクト: schiz/scrollax
<?php

/**
 * Home Template
 *
 * @package IrishMiss
 * @package Startup
 */
get_header();
$post_obj = $wp_query->get_queried_object();
if (!empty($post_obj->ID) && get_option('page_for_posts') == $post_obj->ID) {
    $page_template = 'blog';
} else {
    $page_template = 'blog';
    //    $page_template = 'default';
}
$layout = new miss_page_layout($layout = miss_page_layout(), $location = 'views/loops', $template = $page_template);
$layout->miss_render_page_layout();
get_footer();
コード例 #8
0
ファイル: index.php プロジェクト: schiz/scrollax
<?php

/**
 * Template Name: BuddyPress - Activity Directory
 *
 * @package BuddyPress
 * @subpackage Theme
 */
global $irish_framework_params;
get_header();
$layout = new miss_page_layout($layout = miss_page_layout(), $location = 'views/buddypress/activity', $type = 'index', $template = 'activity');
$layout->miss_render_page_layout();
get_footer();
コード例 #9
0
ファイル: single.php プロジェクト: schiz/scrollax
<?php

/**
 * Single Template
 *
 * @package MissFramework
 * @subpackage StartUp Theme
 */
global $irish_framework_params;
get_header();
$layout = new miss_page_layout($layout = miss_page_layout(), $location = 'views/single', $type = 'single', $template = get_post_type());
$layout->miss_render_page_layout();
get_footer();
コード例 #10
0
ファイル: template-white.php プロジェクト: schiz/scrollax
<?php

/**
 * Template Name: White, no title
 *
 * @package IrishMiss
 * @package Startup
 */
global $irish_framework_params;
get_header();
$layout = new miss_page_layout($layout = miss_page_layout(), $location = 'views/single', $type = 'single', 'white');
$layout->miss_render_page_layout();
get_footer();
コード例 #11
0
ファイル: index.php プロジェクト: schiz/scrollax
<?php

/**
 * BuddyPress Template Groups Index
 *
 * @package missframework
 */
global $irish_framework_params;
get_header();
$layout = new miss_page_layout($layout = miss_page_layout(), $location = 'views/buddypress/groups', $type = 'buddypress', $template = 'index');
$layout->miss_render_page_layout();
get_footer();
コード例 #12
0
ファイル: 404.php プロジェクト: schiz/scrollax
<?php

/**
 * 404 Template
 *
 * @package MissFramework
 * @subpackage StartUp Theme
 */
global $irish_framework_params;
get_header();
$layout = new miss_page_layout($layout = miss_page_layout(), $location = 'views/single', $type = 'error', $template = '404');
$layout->miss_render_page_layout();
get_footer();
コード例 #13
0
ファイル: archive.php プロジェクト: schiz/scrollax
<?php

/**
 * Archive Template
 *
 * @package IrishMiss
 * @package Startup
 */
global $irish_framework_params, $post;
get_header();
//miss_archive();
$layout = new miss_page_layout($layout = miss_page_layout(), $location = 'views/loops', $type = 'loop', $template = get_post_type());
$layout->miss_render_page_layout();
get_footer();