PATH:
home
/
letacommog
/
menuiserie-convert
/
wp-content
/
themes
/
dt-the7
/
inc
/
mods
/
archive-ext
<?php /** * Archives settings. * * @package the7 * @since 3.0.0 */ // File Security Check if ( ! defined( 'ABSPATH' ) ) { exit; } $options[] = array( 'desc' => _x( "Settings bellow allows you to select pages to be used as templates for your Archives and Search results (header, sidebar and footer).\nNote that Archives content and Search results will always be rendered using masonry layout.", 'theme-options', 'the7mk2' ), 'type' => 'info', ); $options[] = array( 'name' => _x( 'Archives', 'theme-options', 'the7mk2' ), 'type' => 'heading' ); $options[] = array( 'name' => _x( 'Author', 'theme-options', 'the7mk2' ), 'type' => 'block' ); $options['template_page_id_author'] = array( 'id' => 'template_page_id_author', 'name' => _x( 'Author archive template', 'theme-options', 'the7mk2' ), 'type' => 'pages_list', ); $options[] = array( 'name' => _x( 'Date', 'theme-options', 'the7mk2' ), 'type' => 'block' ); $options['template_page_id_date'] = array( 'id' => 'template_page_id_date', 'name' => _x( 'Date archive template', 'theme-options', 'the7mk2' ), 'type' => 'pages_list', ); $options[] = array( 'name' => _x( 'Blog archives', 'theme-options', 'the7mk2' ), 'type' => 'block' ); $options['template_page_id_blog_category'] = array( 'id' => 'template_page_id_blog_category', 'name' => _x( 'Blog category template', 'theme-options', 'the7mk2' ), 'type' => 'pages_list', ); $options['template_page_id_blog_tags'] = array( 'id' => 'template_page_id_blog_tags', 'name' => _x( 'Blog tags template', 'theme-options', 'the7mk2' ), 'type' => 'pages_list', ); $options['archive_placeholder'] = array(); $options[] = array( 'name' => _x( 'Search', 'theme-options', 'the7mk2' ), 'type' => 'heading' ); $options[] = array( 'name' => _x( 'Search', 'theme-options', 'the7mk2' ), 'type' => 'block' ); $options['template_page_id_search'] = array( 'id' => 'template_page_id_search', 'name' => _x( 'Search page', 'theme-options', 'the7mk2' ), 'type' => 'pages_list', );
[+]
..
[-] index.php
[edit]
[-] options-archive.php
[edit]
[-] archive-ext.php
[edit]