code
stringlengths
1
2.01M
language
stringclasses
1 value
<?php /** * Canonical API to handle WordPress Redirecting * * Based on "Permalink Redirect" from Scott Yang and "Enforce www. Preference" * by Mark Jaquith * * @package WordPress * @since 2.3.0 */ /** * Redirects incoming links to the proper URL based on the site url. * * Search engines consider www.somedom...
PHP
<?php /** * WordPress CRON API * * @package WordPress */ /** * Schedules a hook to run only once. * * Schedules a hook which will be executed once by the WordPress actions core at * a time which you specify. The action will fire off when someone visits your * WordPress site, if the schedule time has passed. ...
PHP
<?php /** * WordPress Link Template Functions * * @package WordPress * @subpackage Template */ /** * Display the permalink for the current post. * * @since 1.2.0 * @uses apply_filters() Calls 'the_permalink' filter on the permalink string. */ function the_permalink() { echo apply_filters('the_permalink', ge...
PHP
<?php /** * WordPress Post Thumbnail Template Functions. * * Support for post thumbnails * Themes function.php must call add_theme_support( 'post-thumbnails' ) to use these. * * @package WordPress * @subpackage Template */ /** * Check if post has an image attached. * * @since 2.9.0 * * @param int $post_id...
PHP
<?php /** * Sets up the default filters and actions for most * of the WordPress hooks. * * If you need to remove a default hook, this file will * give you the priority for which to use to remove the * hook. * * Not all of the default hooks are found in default-filters.php * * @package WordPress */ // Strip,...
PHP
<?php /** * Site/blog functions that work with the blogs table and related data. * * @package WordPress * @subpackage Multisite * @since MU */ /** * Update the last_updated field for the current blog. * * @since MU */ function wpmu_update_blogs_date() { global $wpdb; update_blog_details( $wpdb->blogid, a...
PHP
<?php /*~ class.smtp.php .---------------------------------------------------------------------------. | Software: PHPMailer - PHP email class | | Version: 5.2.1 | | Site: https://code.google.com/a/apache-extras.org/p/ph...
PHP
<?php /** * Object Cache API * * @link http://codex.wordpress.org/Function_Reference/WP_Cache * * @package WordPress * @subpackage Cache */ /** * Adds data to the cache, if the cache key doesn't already exist. * * @since 2.0.0 * @uses $wp_object_cache Object Cache Class * @see WP_Object_Cache::add() * * ...
PHP
<?php /** * WordPress AtomPub API implementation. * * @package WordPress * @subpackage Publishing * @since 2.2.0 */ class wp_atom_server { /** * ATOM content type. * * @since 2.2.0 * @var string */ var $ATOM_CONTENT_TYPE = 'application/atom+xml'; /** * Categories ATOM content type. * * @sinc...
PHP
<?php /** * Customize * * @package WordPress * @subpackage Customize * @since 3.4.0 */ final class WP_Customize_Manager { protected $theme; protected $original_stylesheet; protected $previewing = false; protected $settings = array(); protected $sections = array(); protected $controls = array(); protect...
PHP
<?php /** * Post functions and post utility function. * * @package WordPress * @subpackage Post * @since 1.5.0 */ // // Post Type Registration // /** * Creates the initial post types when 'init' action is fired. * * @since 2.9.0 */ function create_initial_post_types() { register_post_type( 'post', array( ...
PHP
<?php /** * BackPress Scripts enqueue. * * These classes were refactored from the WordPress WP_Scripts and WordPress * script enqueue API. * * @package BackPress * @since r16 */ /** * BackPress Scripts enqueue class. * * @package BackPress * @uses WP_Dependencies * @since r16 */ class WP_Scripts extends ...
PHP
<?php /** * Admin Bar * * This code handles the building and rendering of the press bar. */ /** * Instantiate the admin bar object and set it up as a global for access elsewhere. * * To hide the admin bar, you're looking in the wrong place. Unhooking this function will not * properly remove the admin bar. For ...
PHP
<?php /** * WordPress Category API * * @package WordPress */ /** * Retrieves all category IDs. * * @since 2.0.0 * @link http://codex.wordpress.org/Function_Reference/get_all_category_ids * * @return object List of all of the category IDs. */ function get_all_category_ids() { if ( ! $cat_ids = wp_cache_get(...
PHP
<?php /** * Simple and uniform HTTP request API. * * Standardizes the HTTP requests for WordPress. Handles cookies, gzip encoding and decoding, chunk * decoding, if HTTP 1.1 and various other difficult HTTP protocol implementations. * * @link http://trac.wordpress.org/ticket/4779 HTTP API Proposal * * @package ...
PHP
<?php /** * Sets up the default filters and actions for Multisite. * * If you need to remove a default hook, this file will give you the priority * for which to use to remove the hook. * * Not all of the Multisite default hooks are found in ms-default-filters.php * * @package WordPress * @subpackage Multisite ...
PHP
<?php /** * These functions are needed to load WordPress. * * @internal This file must be parsable by PHP4. * * @package WordPress */ /** * Turn register globals off. * * @access private * @since 2.1.0 * @return null Will return null if register_globals PHP directive was disabled */ function wp_unregister_...
PHP
<?php /** * The plugin API is located in this file, which allows for creating actions * and filters and hooking functions, and methods. The functions or methods will * then be run when the action or filter is called. * * The API callback examples reference functions, but can be methods of classes. * To hook metho...
PHP
<?php /** * Class for working with MO files * * @version $Id: mo.php 602 2011-01-30 12:43:29Z nbachiyski $ * @package pomo * @subpackage mo */ require_once dirname(__FILE__) . '/translations.php'; require_once dirname(__FILE__) . '/streams.php'; if ( !class_exists( 'MO' ) ): class MO extends Gettext_Translation...
PHP
<?php /** * Contains Translation_Entry class * * @version $Id: entry.php 621 2011-06-13 12:21:50Z nbachiyski $ * @package pomo * @subpackage entry */ if ( !class_exists( 'Translation_Entry' ) ): /** * Translation_Entry class encapsulates a translatable string */ class Translation_Entry { /** * Whether the ...
PHP
<?php /** * Classes, which help reading streams of data from files. * Based on the classes from Danilo Segan <danilo@kvota.net> * * @version $Id: streams.php 597 2011-01-16 20:14:36Z nbachiyski $ * @package pomo * @subpackage streams */ if ( !class_exists( 'POMO_Reader' ) ): class POMO_Reader { var $endian =...
PHP
<?php /** * Class for working with PO files * * @version $Id: po.php 589 2010-12-18 01:40:57Z nbachiyski $ * @package pomo * @subpackage po */ require_once dirname(__FILE__) . '/translations.php'; define('PO_MAX_LINE_LEN', 79); ini_set('auto_detect_line_endings', 1); /** * Routines for working with PO files ...
PHP
<?php /** * Class for a set of entries for translation and their associated headers * * @version $Id: translations.php 590 2010-12-20 19:58:37Z nbachiyski $ * @package pomo * @subpackage translations */ require_once dirname(__FILE__) . '/entry.php'; if ( !class_exists( 'Translations' ) ): class Translations { ...
PHP
<?php /** * MagpieRSS: a simple RSS integration tool * * A compiled file for RSS syndication * * @author Kellan Elliott-McCrea <kellan@protest.net> * @version 0.51 * @license GPL * * @package External * @subpackage MagpieRSS */ /** * Deprecated. Use SimplePie (class-simplepie.php) instead. */ _deprecated_...
PHP
<?php /** * Atom Feed Template for displaying Atom Comments feed. * * @package WordPress */ header('Content-Type: ' . feed_content_type('atom') . '; charset=' . get_option('blog_charset'), true); echo '<?xml version="1.0" encoding="' . get_option('blog_charset') . '" ?' . '>'; ?> <feed xmlns="http://www.w3.org/20...
PHP
<?php /** * Gets the email message from the user's mailbox to add as * a WordPress post. Mailbox connection information must be * configured under Settings > Writing * * @package WordPress */ /** Make sure that the WordPress bootstrap has run before continuing. */ require(dirname(__FILE__) . '/wp-load.php'); if...
PHP
<?php /** * WordPress 基础配置文件。 * * 本文件包含以下配置选项:MySQL 设置、数据库表名前缀、密匙、 * WordPress 语言设定以及 ABSPATH。如需更多信息,请访问 * {@link http://codex.wordpress.org/zh-cn:%E7%BC%96%E8%BE%91_wp-config.php * 编辑 wp-config.php} Codex 页面。MySQL 设置具体信息请咨询您的空间提供商。 * * 这个文件用在于安装程序自动生成 wp-config.php 配置文件, * 您可以手动复制这个文件,并重命名为“wp-conf...
PHP
<?php /** * XML-RPC protocol support for WordPress * * @package WordPress */ /** * Whether this is a XMLRPC Request * * @var bool */ define('XMLRPC_REQUEST', true); // Some browser-embedded clients send cookies. We don't want them. $_COOKIE = array(); // A bug in PHP < 5.2.2 makes $HTTP_RAW_POST_DATA not set...
PHP
<?php // Silence is golden.
PHP
<?php /* ************************************************************************** Plugin Name: SyntaxHighlighter Evolved Plugin URI: http://www.viper007bond.com/wordpress-plugins/syntaxhighlighter/ Version: 3.1.3 Description: Easily post syntax-highlighted code to your site without having to modify ...
PHP
<?php // Silence is golden. ?>
PHP
<?php /** Plugin Name: Simple Local Avatars Plugin URI: http://get10up.com/plugins/simple-local-avatars-wordpress/ Description: Adds an avatar upload field to user profiles if the current user has media permissions. Generates requested sizes on demand just like Gravatar! Simple and lightweight. Version: 1.3.1 ...
PHP
<?php /* Plugin Name: WordPress Database Backup Plugin URI: http://austinmatzko.com/wordpress-plugins/wp-db-backup/ Description: On-demand backup of your WordPress database. Navigate to <a href="edit.php?page=wp-db-backup">Tools &rarr; Backup</a> to get started. Author: Austin Matzko Author URI: http://austinmatzko.co...
PHP
<?php /* Plugin Name: 云商店评论 Plugin URI: http://www.yuanshangdian.com/ Author: luofei614 Author URI: http://weibo.com/luofei614 Description: 云商店评论系统,评论时需要登陆微博后才能评论,从而防止垃圾信息。 Version: 1.5 */ if(!isset($_SESSION)) session_start(); //判断是否已经session_start, 如果没有进行session_start if(!empty($_GET['ysd_a'])){ header('Content-Type...
PHP
<?php // Silence is golden. ?>
PHP
<?php /** * The template for displaying Comments. * * The area of the page that contains both current comments * and the comment form. The actual display of comments is * handled by a callback to twentyeleven_comment() which is * located in the functions.php file. * * @package WordPress * @subpackage Twenty_El...
PHP
<?php /** * The template for displaying Search Results pages. * * @package WordPress * @subpackage Twenty_Eleven * @since Twenty Eleven 1.0 */ get_header(); ?> <section id="primary"> <div id="content" role="main"> <?php if ( have_posts() ) : ?> <header class="page-header"> <h1 class="page-tit...
PHP
<?php /** * Twenty Eleven functions and definitions * * Sets up the theme and provides some helper functions. Some helper functions * are used in the theme as custom template tags. Others are attached to action and * filter hooks in WordPress to change core functionality. * * The first function, twentyeleven_set...
PHP
<?php /** * The template for displaying posts in the Image Post Format on index and archive pages * * Learn more: http://codex.wordpress.org/Post_Formats * * @package WordPress * @subpackage Twenty_Eleven * @since Twenty Eleven 1.0 */ ?> <article id="post-<?php the_ID(); ?>" <?php post_class( 'indexed' ); ?>> ...
PHP
<?php /** * The Template for displaying all single posts. * * @package WordPress * @subpackage Twenty_Eleven * @since Twenty Eleven 1.0 */ get_header(); ?> <div id="primary"> <div id="content" role="main"> <?php while ( have_posts() ) : the_post(); ?> <nav id="nav-single"> <h3 class="assis...
PHP
<?php /** * The default template for displaying content * * @package WordPress * @subpackage Twenty_Eleven * @since Twenty Eleven 1.0 */ ?> <article id="post-<?php the_ID(); ?>" <?php post_class(); ?>> <header class="entry-header"> <hgroup> <h2 class="entry-title"><a href="<?php the_permalink(); ?>" ti...
PHP
<?php /** * The template for displaying posts in the Status Post Format on index and archive pages * * Learn more: http://codex.wordpress.org/Post_Formats * * @package WordPress * @subpackage Twenty_Eleven */ ?> <article id="post-<?php the_ID(); ?>" <?php post_class(); ?>> <header class="entry-header"> <h...
PHP
<?php /** * The template for displaying Archive pages. * * Used to display archive-type pages if nothing more specific matches a query. * For example, puts together date-based pages if no date.php file exists. * * Learn more: http://codex.wordpress.org/Template_Hierarchy * * @package WordPress * @subpackage Tw...
PHP
<?php /** * The template for displaying posts in the Link Post Format on index and archive pages * * Learn more: http://codex.wordpress.org/Post_Formats * * @package WordPress * @subpackage Twenty_Eleven * @since Twenty Eleven 1.0 */ ?> <article id="post-<?php the_ID(); ?>" <?php post_class(); ?>> <header c...
PHP
<?php /** * The template for displaying content in the single.php template * * @package WordPress * @subpackage Twenty_Eleven * @since Twenty Eleven 1.0 */ ?> <article id="post-<?php the_ID(); ?>" <?php post_class(); ?>> <header class="entry-header"> <h1 class="entry-title"><?php the_title(); ?></h1> <?php...
PHP
<?php /** * The template for displaying Author Archive pages. * * @package WordPress * @subpackage Twenty_Eleven * @since Twenty Eleven 1.0 */ get_header(); ?> <section id="primary"> <div id="content" role="main"> <?php if ( have_posts() ) : ?> <?php /* Queue the first post, that way we know ...
PHP
<?php /** * The Footer widget areas. * * @package WordPress * @subpackage Twenty_Eleven * @since Twenty Eleven 1.0 */ ?> <?php /* The footer widget area is triggered if any of the areas * have widgets. So let's check that first. * * If none of the sidebars have widgets, then let's bail early. */ if ( ...
PHP
<?php /** * The template for displaying content featured in the showcase.php page template * * @package WordPress * @subpackage Twenty_Eleven * @since Twenty Eleven 1.0 */ global $feature_class; ?> <article id="post-<?php the_ID(); ?>" <?php post_class( $feature_class ); ?>> <header class="entry-header"> <h2 ...
PHP
<?php /** * The template used for displaying page content in page.php * * @package WordPress * @subpackage Twenty_Eleven * @since Twenty Eleven 1.0 */ ?> <article id="post-<?php the_ID(); ?>" <?php post_class(); ?>> <header class="entry-header"> <h1 class="entry-title"><?php the_title(); ?></h1> </header><!-...
PHP
<?php /** * The main template file. * * This is the most generic template file in a WordPress theme * and one of the two required files for a theme (the other being style.css). * It is used to display a page when nothing more specific matches a query. * E.g., it puts together the home page when no home.php file e...
PHP
<?php /** * The template for displaying 404 pages (Not Found). * * @package WordPress * @subpackage Twenty_Eleven * @since Twenty Eleven 1.0 */ get_header(); ?> <div id="primary"> <div id="content" role="main"> <article id="post-0" class="post error404 not-found"> <header class="entry-header"> <...
PHP
<?php /** * The template for displaying all pages. * * This is the template that displays all pages by default. * Please note that this is the WordPress construct of pages * and that other 'pages' on your WordPress site will use a * different template. * * @package WordPress * @subpackage Twenty_Eleven * @sin...
PHP
<?php /** * The template for displaying posts in the Aside Post Format on index and archive pages * * Learn more: http://codex.wordpress.org/Post_Formats * * @package WordPress * @subpackage Twenty_Eleven * @since Twenty Eleven 1.0 */ ?> <article id="post-<?php the_ID(); ?>" <?php post_class(); ?>> <header ...
PHP
<?php /** * Template Name: Sidebar Template * Description: A Page Template that adds a sidebar to pages * * @package WordPress * @subpackage Twenty_Eleven * @since Twenty Eleven 1.0 */ get_header(); ?> <div id="primary"> <div id="content" role="main"> <?php while ( have_posts() ) : the_post(); ?> ...
PHP
<?php /** * Template Name: Showcase Template * Description: A Page Template that showcases Sticky Posts, Asides, and Blog Posts * * The showcase template in Twenty Eleven consists of a featured posts section using sticky posts, * another recent posts area (with the latest post shown in full and the rest as a list)...
PHP
<?php /** * The template for displaying the footer. * * Contains the closing of the id=main div and all content after * * @package WordPress * @subpackage Twenty_Eleven * @since Twenty Eleven 1.0 */ ?> </div><!-- #main --> <footer id="colophon" role="contentinfo"> <?php /* A sidebar in the footer? Y...
PHP
<?php /** * The Sidebar containing the main widget area. * * @package WordPress * @subpackage Twenty_Eleven * @since Twenty Eleven 1.0 */ $options = twentyeleven_get_theme_options(); $current_layout = $options['theme_layout']; if ( 'content' != $current_layout ) : ?> <div id="secondary" class="widget-area" ro...
PHP
<?php /** * The template used to display Tag Archive pages * * @package WordPress * @subpackage Twenty_Eleven * @since Twenty Eleven 1.0 */ get_header(); ?> <section id="primary"> <div id="content" role="main"> <?php if ( have_posts() ) : ?> <header class="page-header"> <h1 class="page-title"...
PHP
<?php /** * The Header for our theme. * * Displays all of the <head> section and everything up till <div id="main"> * * @package WordPress * @subpackage Twenty_Eleven * @since Twenty Eleven 1.0 */ ?><!DOCTYPE html> <!--[if IE 6]> <html id="ie6" <?php language_attributes(); ?>> <![endif]--> <!--[if IE 7]> <html ...
PHP
<?php /** * The template for displaying image attachments. * * @package WordPress * @subpackage Twenty_Eleven * @since Twenty Eleven 1.0 */ get_header(); ?> <div id="primary" class="image-attachment"> <div id="content" role="main"> <?php while ( have_posts() ) : the_post(); ?> <nav id="nav-single"...
PHP
<?php /** * The template for displaying posts in the Gallery Post Format on index and archive pages * * Learn more: http://codex.wordpress.org/Post_Formats * * @package WordPress * @subpackage Twenty_Eleven * @since Twenty Eleven 1.0 */ ?> <article id="post-<?php the_ID(); ?>" <?php post_class(); ?>> <header ...
PHP
<?php /** * The default template for displaying content * * @package WordPress * @subpackage Twenty_Eleven * @since Twenty Eleven 1.0 */ ?> <article id="post-<?php the_ID(); ?>" <?php post_class(); ?>> <header class="entry-header"> <?php if ( is_sticky() ) : ?> <hgroup> <h2 class="entry-title"><a ...
PHP
<?php /** * The template for displaying page content in the showcase.php page template * * @package WordPress * @subpackage Twenty_Eleven * @since Twenty Eleven 1.0 */ ?> <article id="post-<?php the_ID(); ?>" <?php post_class( 'intro' ); ?>> <header class="entry-header"> <h2 class="entry-title"><?php the_titl...
PHP
<?php /** * The template for displaying Category Archive pages. * * @package WordPress * @subpackage Twenty_Eleven * @since Twenty Eleven 1.0 */ get_header(); ?> <section id="primary"> <div id="content" role="main"> <?php if ( have_posts() ) : ?> <header class="page-header"> <h1 class="page-t...
PHP
<?php /** * Makes a custom Widget for displaying Aside, Link, Status, and Quote Posts available with Twenty Eleven * * Learn more: http://codex.wordpress.org/Widgets_API#Developing_Widgets * * @package WordPress * @subpackage Twenty_Eleven * @since Twenty Eleven 1.0 */ class Twenty_Eleven_Ephemera_Widget extend...
PHP
<?php /** * Twenty Eleven Theme Options * * @package WordPress * @subpackage Twenty_Eleven * @since Twenty Eleven 1.0 */ /** * Properly enqueue styles and scripts for our theme options page. * * This function is attached to the admin_enqueue_scripts action hook. * * @since Twenty Eleven 1.0 * */ function ...
PHP
<?php /** * The template for displaying search forms in Twenty Eleven * * @package WordPress * @subpackage Twenty_Eleven * @since Twenty Eleven 1.0 */ ?> <form method="get" id="searchform" action="<?php echo esc_url( home_url( '/' ) ); ?>"> <label for="s" class="assistive-text"><?php _e( 'Search', 'twentyeleve...
PHP
<?php /** * @package Themolio */ ?> <?php global $themolio_is_mobile; ?> <div id="comments"> <?php if(post_password_required()): ?> <p class="nopassword"><?php _e('This post is password protected. Enter the password to view any comments.', 'themolio'); ?></p> </div> <?php return; endif; ...
PHP
<?php /** * @package Themolio */ ?> <?php global $themolio_options, $themolio_is_mobile; ?> <?php get_header(); ?> <?php if($themolio_is_mobile) { $containerclass = ' fullcontainer'; } else { $containerclass = ''; } ?> <?php get_left_sidebar(); ?> <div class="container<?php echo $containerclass; ...
PHP
<?php /** * @package Themolio */ ?> <?php /** * Setting the content width based on theme's layout */ if(!isset($content_width)) $content_width = 740; /** * Calling the theme options template and retrieving the theme options */ require(get_template_directory().'/admin/theme-options.php'); $the...
PHP
<?php /** * @package Themolio */ ?> <?php global $themolio_options, $themolio_is_mobile; ?> <?php get_header(); ?> <?php if($themolio_is_mobile) { $containerclass = ' fullcontainer'; } else { $containerclass = ''; } ?> <?php get_left_sidebar(); ?> <div class="container<?php echo $containerclass; ...
PHP
<?php /** * @package Themolio */ ?> <?php global $themolio_options, $themolio_is_mobile; ?> <?php get_header(); ?> <?php if($themolio_is_mobile) { $containerclass = ' fullcontainer'; } else { $containerclass = ''; } ?> <?php get_header(); ?> <?php get_left_sidebar(); ?> <div class="container<?ph...
PHP
<?php /** * @package Themolio */ ?> <?php global $themolio_options; ?> <article id="post-<?php the_ID(); ?>" <?php post_class(); ?>> <h2 class="entry-title"><?php the_title(); ?></h2> <div class="entry-meta"> <?php themolio_posted_on(); ?> </div> <div class="entry-content entry-cont...
PHP
<?php /** * @package Themolio */ ?> <?php global $themolio_options; ?> <article id="post-<?php the_ID(); ?>" <?php post_class(); ?>> <h2 class="entry-title"><?php the_title(); ?></h2> <?php if($themolio_options['show_page_meta']): ?> <div class="entry-meta"> <?php themolio_posted_on(); ?...
PHP
<?php /** * @package Themolio */ ?> <?php global $themolio_options, $themolio_is_mobile; ?> <?php get_header(); ?> <?php if(($themolio_options['blog_style'] == 'grid' and !$themolio_options['show_sidebar_grid']) or $themolio_is_mobile) { $containerclass = ' fullcontainer'; } else { $containerclass =...
PHP
<?php /** * @package Themolio */ ?> <?php global $themolio_options; ?> <?php get_header(); ?> <div class="fullcontainer"> <article id="post-0" class="post"> <h2 class="entry-title missing-title"><?php _e('Error! Page not found','themolio'); ?></h2> <div class="entry-content"> ...
PHP
<?php /** * @package Themolio */ ?> <?php global $themolio_options, $themolio_grid_item_count; ?> <?php if($themolio_grid_item_count == 1): ?><div class="grid-col<?php themolio_grid_col_class(); ?>"><?php endif; ?> <article id="post-<?php the_ID(); ?>" <?php post_class('post-grid'); ?>> <?php if(trim(get_...
PHP
<?php /** * @package Themolio */ ?> <?php global $themolio_options, $themolio_is_mobile; ?> <?php get_header(); ?> <?php if($themolio_is_mobile) { $containerclass = ' fullcontainer'; } else { $containerclass = ''; } ?> <?php get_left_sidebar(); ?> <div class="container<?php echo $containerclass; ...
PHP
<?php /** * @package Themolio */ ?> <?php /* THEME SETTINGS PAGE */ /***********************/ //Initialize theme options on load function themolio_init_options() { if(false === themolio_get_options()) add_option('themolio_options', themolio_get_default_options()); register_setting('themolio_options...
PHP
<?php /** * @package Themolio */ ?> <?php global $themolio_options; ?> </div> <!-- End of content wrapper --> </div> <!-- End of content --> <footer id="footer" role="contentinfo"> <div class="wrapper"> <table class="tablayout"><tr> <td class="left"> <?php if(trim($them...
PHP
<?php /** * @package Themolio */ ?> <div id="primary" class="widget-area" role="complementary"> <?php if(!dynamic_sidebar('sidebar-1')): ?> <aside id="themolio-archives" class="widget widget_archives"> <h3 class="widget-title"><?php _e('Archives','themolio'); ?></h3> <ul id="recentcom...
PHP
<?php /** * @package Themolio */ ?> <?php global $themolio_options; ?> <?php if($themolio_options['grid_columns'] == 2) $gridclass = "grid-horizontal-col-2"; elseif($themolio_options['grid_columns'] == 3) $gridclass = "grid-horizontal-col-3"; elseif($themolio_options['grid_colum...
PHP
<?php /** * @package Themolio */ ?> <!DOCTYPE html> <!--[if IE 6]> <html id="ie6" <?php language_attributes(); ?>> <![endif]--> <!--[if IE 7]> <html id="ie7" <?php language_attributes(); ?>> <![endif]--> <!--[if IE 8]> <html id="ie8" <?php language_attributes(); ?>> <![endif]--> <!--[if !(IE 6) | !(IE ...
PHP
<?php /** * @package Themolio */ ?> <?php global $themolio_options, $themolio_is_mobile; ?> <?php get_header(); ?> <?php if($themolio_is_mobile) { $containerclass = ' fullcontainer'; } else { $containerclass = ''; } ?> <?php get_left_sidebar(); ?> <div class="container<?php echo $containerclass; ...
PHP
<?php /** * @package Themolio */ ?> <?php global $themolio_options; ?> <article id="post-<?php the_ID(); ?>" <?php post_class(); ?>> <h2 class="entry-title"><a href="<?php the_permalink(); ?>" title="<?php printf(esc_attr__('Permalink to %s', 'themolio'), the_title_attribute('echo=0')); ?>" rel="bookmark">...
PHP
<?php /** * @package Themolio */ ?> <?php global $themolio_options; ?> <article id="post-<?php the_ID(); ?>" <?php post_class(); ?>> <h2 class="entry-title"><a href="<?php the_permalink(); ?>" title="<?php printf(esc_attr__('Permalink to %s', 'themolio'), the_title_attribute('echo=0')); ?>" rel="bookmark">...
PHP
<?php /** * Template Name: Full-width, no sidebar * @package Themolio */ ?> <?php global $themolio_options; ?> <?php get_header(); ?> <div class="fullcontainer"> <?php if(have_posts()): ?> <?php while(have_posts()) : the_post(); ?> <?php get_template_part('content', 'page'); ?> ...
PHP
<?php /** * @package Themolio */ ?> <form role="search" method="get" id="searchform" action="<?php echo home_url('/'); ?>"> <input type="text" value="" name="s" id="s" /> <input type="submit" id="searchsubmit" value="<?php _e('Search','themolio'); ?>" /> </form>
PHP
<?php /** * The template for displaying Comments. * * The area of the page that contains both current comments * and the comment form. The actual display of comments is * handled by a callback to twentyten_comment which is * located in the functions.php file. * * @package WordPress * @subpackage Twenty_Ten * ...
PHP
<?php /** * The template for displaying Search Results pages. * * @package WordPress * @subpackage Twenty_Ten * @since Twenty Ten 1.0 */ get_header(); ?> <div id="container"> <div id="content" role="main"> <?php if ( have_posts() ) : ?> <h1 class="page-title"><?php printf( __( 'Search Results for: %s'...
PHP
<?php /** * TwentyTen functions and definitions * * Sets up the theme and provides some helper functions. Some helper functions * are used in the theme as custom template tags. Others are attached to action and * filter hooks in WordPress to change core functionality. * * The first function, twentyten_setup(), s...
PHP
<?php /** * The Template for displaying all single posts. * * @package WordPress * @subpackage Twenty_Ten * @since Twenty Ten 1.0 */ get_header(); ?> <div id="container"> <div id="content" role="main"> <?php /* Run the loop to output the post. * If you want to overload this in a child theme then...
PHP
<?php /** * The template for displaying Archive pages. * * Used to display archive-type pages if nothing more specific matches a query. * For example, puts together date-based pages if no date.php file exists. * * Learn more: http://codex.wordpress.org/Template_Hierarchy * * @package WordPress * @subpackage Tw...
PHP
<?php /** * The template for displaying Author Archive pages. * * @package WordPress * @subpackage Twenty_Ten * @since Twenty Ten 1.0 */ get_header(); ?> <div id="container"> <div id="content" role="main"> <?php /* Queue the first post, that way we know who * the author is when we try to get their name...
PHP
<?php /** * The Footer widget areas. * * @package WordPress * @subpackage Twenty_Ten * @since Twenty Ten 1.0 */ ?> <?php /* The footer widget area is triggered if any of the areas * have widgets. So let's check that first. * * If none of the sidebars have widgets, then let's bail early. */ if ( ! is_...
PHP
<?php /** * The template for displaying attachments. * * @package WordPress * @subpackage Twenty_Ten * @since Twenty Ten 1.0 */ get_header(); ?> <div id="container" class="single-attachment"> <div id="content" role="main"> <?php /* Run the loop to output the attachment. * If you want to overload...
PHP
<?php /** * The main template file. * * This is the most generic template file in a WordPress theme * and one of the two required files for a theme (the other being style.css). * It is used to display a page when nothing more specific matches a query. * E.g., it puts together the home page when no home.php file e...
PHP
<?php /** * The loop that displays an attachment. * * The loop displays the posts and the post content. See * http://codex.wordpress.org/The_Loop to understand it and * http://codex.wordpress.org/Template_Tags to understand * the tags used in it. * * This can be overridden in child themes with loop-attachment.p...
PHP
<?php /** * The template for displaying 404 pages (Not Found). * * @package WordPress * @subpackage Twenty_Ten * @since Twenty Ten 1.0 */ get_header(); ?> <div id="container"> <div id="content" role="main"> <div id="post-0" class="post error404 not-found"> <h1 class="entry-title"><?php _e( 'Not Found...
PHP
<?php /** * The template for displaying all pages. * * This is the template that displays all pages by default. * Please note that this is the WordPress construct of pages * and that other 'pages' on your WordPress site will use a * different template. * * @package WordPress * @subpackage Twenty_Ten * @since ...
PHP