2004-01-27 10:58:01 +01:00
< ? php
/* Note: these tags go anywhere in the template */
2004-12-30 11:58:06 +01:00
function get_header () {
2006-10-11 05:39:13 +02:00
do_action ( 'get_header' );
2004-12-30 11:58:06 +01:00
if ( file_exists ( TEMPLATEPATH . '/header.php' ) )
2004-12-30 22:58:01 +01:00
load_template ( TEMPLATEPATH . '/header.php' );
2004-12-30 11:58:06 +01:00
else
2005-01-02 03:47:45 +01:00
load_template ( ABSPATH . 'wp-content/themes/default/header.php' );
2004-12-30 11:58:06 +01:00
}
2005-10-18 01:41:28 +02:00
2004-12-30 11:58:06 +01:00
function get_footer () {
2006-10-11 05:39:13 +02:00
do_action ( 'get_footer' );
2004-12-30 11:58:06 +01:00
if ( file_exists ( TEMPLATEPATH . '/footer.php' ) )
2004-12-30 22:58:01 +01:00
load_template ( TEMPLATEPATH . '/footer.php' );
2004-12-30 11:58:06 +01:00
else
2005-01-02 03:47:45 +01:00
load_template ( ABSPATH . 'wp-content/themes/default/footer.php' );
2004-12-30 11:58:06 +01:00
}
2005-10-18 01:41:28 +02:00
2008-01-14 05:51:29 +01:00
function get_sidebar ( $name = null ) {
2007-03-29 03:45:29 +02:00
do_action ( 'get_sidebar' );
2008-01-14 05:51:29 +01:00
if ( isset ( $name ) && file_exists ( TEMPLATEPATH . " /sidebar- { $name } .php " ) )
load_template ( TEMPLATEPATH . " /sidebar- { $name } .php " );
elseif ( file_exists ( TEMPLATEPATH . '/sidebar.php' ) )
2004-12-30 22:58:01 +01:00
load_template ( TEMPLATEPATH . '/sidebar.php' );
2004-12-30 11:58:06 +01:00
else
2005-01-02 03:47:45 +01:00
load_template ( ABSPATH . 'wp-content/themes/default/sidebar.php' );
2004-12-30 11:58:06 +01:00
}
2004-07-11 01:34:47 +02:00
function wp_loginout () {
2006-02-22 20:08:55 +01:00
if ( ! is_user_logged_in () )
2007-11-26 22:40:00 +01:00
$link = '<a href="' . get_option ( 'siteurl' ) . '/wp-login.php">' . __ ( 'Log in' ) . '</a>' ;
2005-10-18 01:41:28 +02:00
else
2007-11-26 22:40:00 +01:00
$link = '<a href="' . get_option ( 'siteurl' ) . '/wp-login.php?action=logout">' . __ ( 'Log out' ) . '</a>' ;
2004-07-11 01:34:47 +02:00
echo apply_filters ( 'loginout' , $link );
}
2005-10-18 01:41:28 +02:00
2005-01-24 11:06:53 +01:00
function wp_register ( $before = '<li>' , $after = '</li>' ) {
2004-07-11 01:34:47 +02:00
2006-02-22 20:08:55 +01:00
if ( ! is_user_logged_in () ) {
2006-08-30 23:46:31 +02:00
if ( get_option ( 'users_can_register' ) )
2006-10-04 18:47:50 +02:00
$link = $before . '<a href="' . get_option ( 'siteurl' ) . '/wp-login.php?action=register">' . __ ( 'Register' ) . '</a>' . $after ;
2006-02-22 20:08:55 +01:00
else
$link = '' ;
} else {
2006-08-30 23:46:31 +02:00
$link = $before . '<a href="' . get_option ( 'siteurl' ) . '/wp-admin/">' . __ ( 'Site Admin' ) . '</a>' . $after ;
2006-02-22 20:08:55 +01:00
}
2004-07-11 01:34:47 +02:00
echo apply_filters ( 'register' , $link );
}
2005-10-18 01:41:28 +02:00
2004-07-11 01:34:47 +02:00
function wp_meta () {
2005-02-01 07:20:54 +01:00
do_action ( 'wp_meta' );
2004-07-11 01:34:47 +02:00
}
2005-10-18 01:41:28 +02:00
2004-01-27 10:58:01 +01:00
function bloginfo ( $show = '' ) {
2007-09-01 01:55:56 +02:00
echo get_bloginfo ( $show , 'display' );
2004-01-27 10:58:01 +01:00
}
2007-03-07 04:05:41 +01:00
/**
2007-09-04 01:32:58 +02:00
* Note : some of these values are DEPRECATED . Meaning they could be
* taken out at any time and shouldn ' t be relied upon . Options
* without " // DEPRECATED " are the preferred and recommended ways
2007-03-07 04:05:41 +01:00
* to get the information .
*/
2007-09-01 01:55:56 +02:00
function get_bloginfo ( $show = '' , $filter = 'raw' ) {
2004-02-05 21:55:50 +01:00
2004-09-30 19:56:16 +02:00
switch ( $show ) {
2005-10-18 01:41:28 +02:00
case 'url' :
2007-03-07 04:05:41 +01:00
case 'home' : // DEPRECATED
case 'siteurl' : // DEPRECATED
2006-08-30 23:46:31 +02:00
$output = get_option ( 'home' );
2005-10-18 01:41:28 +02:00
break ;
case 'wpurl' :
2006-08-30 23:46:31 +02:00
$output = get_option ( 'siteurl' );
2005-10-18 01:41:28 +02:00
break ;
case 'description' :
2006-08-30 23:46:31 +02:00
$output = get_option ( 'blogdescription' );
2005-10-18 01:41:28 +02:00
break ;
case 'rdf_url' :
$output = get_feed_link ( 'rdf' );
break ;
case 'rss_url' :
$output = get_feed_link ( 'rss' );
break ;
case 'rss2_url' :
$output = get_feed_link ( 'rss2' );
break ;
case 'atom_url' :
$output = get_feed_link ( 'atom' );
break ;
2007-02-23 09:18:30 +01:00
case 'comments_atom_url' :
$output = get_feed_link ( 'comments_atom' );
2007-06-01 00:44:21 +02:00
break ;
2005-10-18 01:41:28 +02:00
case 'comments_rss2_url' :
$output = get_feed_link ( 'comments_rss2' );
break ;
case 'pingback_url' :
2006-08-30 23:46:31 +02:00
$output = get_option ( 'siteurl' ) . '/xmlrpc.php' ;
2005-10-18 01:41:28 +02:00
break ;
case 'stylesheet_url' :
$output = get_stylesheet_uri ();
break ;
case 'stylesheet_directory' :
$output = get_stylesheet_directory_uri ();
break ;
case 'template_directory' :
case 'template_url' :
$output = get_template_directory_uri ();
break ;
case 'admin_email' :
2006-08-30 23:46:31 +02:00
$output = get_option ( 'admin_email' );
2005-10-18 01:41:28 +02:00
break ;
case 'charset' :
2006-08-30 23:46:31 +02:00
$output = get_option ( 'blog_charset' );
2005-10-18 01:41:28 +02:00
if ( '' == $output ) $output = 'UTF-8' ;
break ;
case 'html_type' :
$output = get_option ( 'html_type' );
break ;
case 'version' :
global $wp_version ;
$output = $wp_version ;
break ;
2006-09-24 21:29:32 +02:00
case 'language' :
$output = get_locale ();
$output = str_replace ( '_' , '-' , $output );
break ;
case 'text_direction' :
global $wp_locale ;
$output = $wp_locale -> text_direction ;
break ;
2005-10-18 01:41:28 +02:00
case 'name' :
default :
2006-08-30 23:46:31 +02:00
$output = get_option ( 'blogname' );
2005-10-18 01:41:28 +02:00
break ;
2004-09-30 19:56:16 +02:00
}
2007-09-01 01:55:56 +02:00
$url = true ;
if ( strpos ( $show , 'url' ) === false &&
strpos ( $show , 'directory' ) === false &&
strpos ( $show , 'home' ) === false )
$url = false ;
2007-09-04 01:19:20 +02:00
2007-09-01 01:55:56 +02:00
if ( 'display' == $filter ) {
if ( $url )
$output = apply_filters ( 'bloginfo_url' , $output , $show );
else
$output = apply_filters ( 'bloginfo' , $output , $show );
}
2004-09-30 19:56:16 +02:00
return $output ;
2004-01-27 10:58:01 +01:00
}
2005-10-18 01:41:28 +02:00
2008-01-02 21:45:17 +01:00
function wp_title ( $sep = '»' , $display = true , $seplocation = '' ) {
2007-03-09 05:06:23 +01:00
global $wpdb , $wp_locale , $wp_query ;
2005-10-18 01:41:28 +02:00
$cat = get_query_var ( 'cat' );
2007-05-23 05:57:20 +02:00
$tag = get_query_var ( 'tag_id' );
2005-10-18 01:41:28 +02:00
$category_name = get_query_var ( 'category_name' );
2005-11-11 01:48:31 +01:00
$author = get_query_var ( 'author' );
$author_name = get_query_var ( 'author_name' );
2007-03-09 05:06:23 +01:00
$m = get_query_var ( 'm' );
$year = get_query_var ( 'year' );
$monthnum = get_query_var ( 'monthnum' );
$day = get_query_var ( 'day' );
2006-10-03 17:41:44 +02:00
$title = '' ;
2005-10-18 01:41:28 +02:00
// If there's a category
if ( ! empty ( $cat ) ) {
// category exclusion
if ( ! stristr ( $cat , '-' ) )
2006-08-25 01:50:24 +02:00
$title = apply_filters ( 'single_cat_title' , get_the_category_by_ID ( $cat ));
2007-03-07 02:29:07 +01:00
} elseif ( ! empty ( $category_name ) ) {
2005-10-18 01:41:28 +02:00
if ( stristr ( $category_name , '/' ) ) {
$category_name = explode ( '/' , $category_name );
if ( $category_name [ count ( $category_name ) - 1 ] )
$category_name = $category_name [ count ( $category_name ) - 1 ]; // no trailing slash
else
$category_name = $category_name [ count ( $category_name ) - 2 ]; // there was a trailling slash
}
2007-08-26 19:18:00 +02:00
$cat = get_term_by ( 'slug' , $category_name , 'category' , OBJECT , 'display' );
2007-05-27 21:32:45 +02:00
if ( $cat )
$title = apply_filters ( 'single_cat_title' , $cat -> name );
2005-10-18 01:41:28 +02:00
}
2007-05-23 05:57:20 +02:00
if ( ! empty ( $tag ) ) {
2007-08-26 19:18:00 +02:00
$tag = get_term ( $tag , 'post_tag' , OBJECT , 'display' );
2008-02-05 07:47:27 +01:00
if ( is_wp_error ( $tag ) )
2007-09-18 18:32:22 +02:00
return $tag ;
2007-05-23 05:57:20 +02:00
if ( ! empty ( $tag -> name ) )
2007-08-26 19:18:00 +02:00
$title = apply_filters ( 'single_tag_title' , $tag -> name );
2007-05-23 05:57:20 +02:00
}
2005-11-11 01:48:31 +01:00
// If there's an author
if ( ! empty ( $author ) ) {
$title = get_userdata ( $author );
$title = $title -> display_name ;
}
if ( ! empty ( $author_name ) ) {
// We do a direct query here because we don't cache by nicename.
2007-10-02 20:45:47 +02:00
$title = $wpdb -> get_var ( $wpdb -> prepare ( " SELECT display_name FROM $wpdb->users WHERE user_nicename = %s " , $author_name ));
2005-11-11 01:48:31 +01:00
}
2005-10-18 01:41:28 +02:00
// If there's a month
if ( ! empty ( $m ) ) {
$my_year = substr ( $m , 0 , 4 );
2007-03-29 04:06:16 +02:00
$my_month = $wp_locale -> get_month ( substr ( $m , 4 , 2 ));
2007-03-26 01:47:48 +02:00
$my_day = intval ( substr ( $m , 6 , 2 ));
$title = " $my_year " . ( $my_month ? " $sep $my_month " : " " ) . ( $my_day ? " $sep $my_day " : " " );
2005-10-18 01:41:28 +02:00
}
if ( ! empty ( $year ) ) {
$title = $year ;
if ( ! empty ( $monthnum ) )
2007-03-09 05:06:23 +01:00
$title .= " $sep " . $wp_locale -> get_month ( $monthnum );
2005-10-18 01:41:28 +02:00
if ( ! empty ( $day ) )
2007-03-09 05:06:23 +01:00
$title .= " $sep " . zeroise ( $day , 2 );
2005-10-18 01:41:28 +02:00
}
// If there is a post
if ( is_single () || is_page () ) {
2007-03-09 05:13:42 +01:00
$post = $wp_query -> get_queried_object ();
2007-06-02 00:54:46 +02:00
$title = strip_tags ( apply_filters ( 'single_post_title' , $post -> post_title ) );
2005-10-18 01:41:28 +02:00
}
2005-12-06 00:57:41 +01:00
$prefix = '' ;
2006-10-07 20:54:56 +02:00
if ( ! empty ( $title ) )
2005-12-06 00:57:41 +01:00
$prefix = " $sep " ;
2008-01-02 21:45:17 +01:00
// Determines position of the separator
if ( 'right' == $seplocation )
$title = $title . $prefix ;
else
$title = $prefix . $title ;
2008-02-05 07:47:27 +01:00
2005-12-06 00:57:41 +01:00
$title = apply_filters ( 'wp_title' , $title , $sep );
2005-10-18 01:41:28 +02:00
// Send it out
2005-12-06 00:57:41 +01:00
if ( $display )
echo $title ;
else
return $title ;
2008-01-02 21:45:17 +01:00
2004-01-27 10:58:01 +01:00
}
2005-10-18 01:41:28 +02:00
2004-01-27 10:58:01 +01:00
function single_post_title ( $prefix = '' , $display = true ) {
2005-10-18 01:41:28 +02:00
global $wpdb ;
$p = get_query_var ( 'p' );
$name = get_query_var ( 'name' );
if ( intval ( $p ) || '' != $name ) {
if ( ! $p )
2007-10-02 20:45:47 +02:00
$p = $wpdb -> get_var ( $wpdb -> prepare ( " SELECT ID FROM $wpdb->posts WHERE post_name = %s " , $name ));
2005-10-18 01:41:28 +02:00
$post = & get_post ( $p );
$title = $post -> post_title ;
$title = apply_filters ( 'single_post_title' , $title );
if ( $display )
echo $prefix . strip_tags ( $title );
else
return strip_tags ( $title );
}
2004-01-27 10:58:01 +01:00
}
2005-10-18 01:41:28 +02:00
2004-01-27 10:58:01 +01:00
function single_cat_title ( $prefix = '' , $display = true ) {
2005-05-27 08:10:41 +02:00
$cat = intval ( get_query_var ( 'cat' ) );
2005-10-18 01:41:28 +02:00
if ( ! empty ( $cat ) && ! ( strtoupper ( $cat ) == 'ALL' ) ) {
2006-08-25 01:50:24 +02:00
$my_cat_name = apply_filters ( 'single_cat_title' , get_the_category_by_ID ( $cat ));
2005-10-18 01:41:28 +02:00
if ( ! empty ( $my_cat_name ) ) {
if ( $display )
2005-05-27 08:10:41 +02:00
echo $prefix . strip_tags ( $my_cat_name );
else
return strip_tags ( $my_cat_name );
}
2007-09-11 20:06:52 +02:00
} else if ( is_tag () ) {
return single_tag_title ( $prefix , $display );
2005-05-27 08:10:41 +02:00
}
2004-01-27 10:58:01 +01:00
}
2005-10-18 01:41:28 +02:00
2007-08-21 20:39:45 +02:00
function single_tag_title ( $prefix = '' , $display = true ) {
2007-09-11 20:06:52 +02:00
if ( ! is_tag () )
return ;
2007-08-21 20:39:45 +02:00
$tag_id = intval ( get_query_var ( 'tag_id' ) );
2007-09-11 20:06:52 +02:00
2007-08-21 20:39:45 +02:00
if ( ! empty ( $tag_id ) ) {
2007-09-11 20:06:52 +02:00
$my_tag = & get_term ( $tag_id , 'post_tag' , OBJECT , 'display' );
2008-02-05 07:47:27 +01:00
if ( is_wp_error ( $my_tag ) )
2007-09-21 17:51:00 +02:00
return false ;
2007-08-21 20:39:45 +02:00
$my_tag_name = apply_filters ( 'single_tag_title' , $my_tag -> name );
if ( ! empty ( $my_tag_name ) ) {
if ( $display )
2007-09-11 20:06:52 +02:00
echo $prefix . $my_tag_name ;
2007-08-21 20:39:45 +02:00
else
2007-09-11 20:06:52 +02:00
return $my_tag_name ;
2007-08-21 20:39:45 +02:00
}
}
}
2004-01-27 10:58:01 +01:00
function single_month_title ( $prefix = '' , $display = true ) {
2007-03-09 05:06:23 +01:00
global $wp_locale ;
$m = get_query_var ( 'm' );
$year = get_query_var ( 'year' );
$monthnum = get_query_var ( 'monthnum' );
2005-10-18 01:41:28 +02:00
if ( ! empty ( $monthnum ) && ! empty ( $year ) ) {
2004-10-19 01:45:26 +02:00
$my_year = $year ;
2006-04-02 02:20:11 +02:00
$my_month = $wp_locale -> get_month ( $monthnum );
2005-10-18 01:41:28 +02:00
} elseif ( ! empty ( $m ) ) {
2004-10-19 01:52:36 +02:00
$my_year = substr ( $m , 0 , 4 );
2006-10-05 05:12:24 +02:00
$my_month = $wp_locale -> get_month ( substr ( $m , 4 , 2 ));
2004-10-19 01:52:36 +02:00
}
2006-10-05 05:12:24 +02:00
if ( empty ( $my_month ) )
return false ;
$result = $prefix . $my_month . $prefix . $my_year ;
if ( ! $display )
return $result ;
echo $result ;
2004-01-27 10:58:01 +01:00
}
2005-10-18 01:41:28 +02:00
2004-01-27 10:58:01 +01:00
/* link navigation hack by Orien http://icecode.com/ */
2004-07-06 19:04:07 +02:00
function get_archives_link ( $url , $text , $format = 'html' , $before = '' , $after = '' ) {
$text = wptexturize ( $text );
2006-12-21 11:10:04 +01:00
$title_text = attribute_escape ( $text );
2007-03-17 09:46:59 +01:00
$url = clean_url ( $url );
2004-07-29 01:09:33 +02:00
2005-10-18 01:41:28 +02:00
if ( 'link' == $format )
2004-07-29 01:09:33 +02:00
return " \t <link rel='archives' title=' $title_text ' href=' $url ' /> \n " ;
2005-10-18 01:41:28 +02:00
elseif ( 'option' == $format )
2005-02-14 00:46:33 +01:00
return " \t <option value=' $url '> $before $text $after </option> \n " ;
2005-10-18 01:41:28 +02:00
elseif ( 'html' == $format )
2004-07-29 01:09:33 +02:00
return " \t <li> $before <a href=' $url ' title=' $title_text '> $text </a> $after </li> \n " ;
2005-10-18 01:41:28 +02:00
else // custom
2004-07-29 01:09:33 +02:00
return " \t $before <a href=' $url ' title=' $title_text '> $text </a> $after\n " ;
2004-01-27 10:58:01 +01:00
}
2005-10-18 01:41:28 +02:00
2004-04-24 21:23:57 +02:00
function wp_get_archives ( $args = '' ) {
2007-05-11 06:01:54 +02:00
global $wpdb , $wp_locale ;
2007-06-14 04:25:30 +02:00
2007-05-11 05:10:05 +02:00
$defaults = array (
2007-09-04 01:32:58 +02:00
'type' => 'monthly' , 'limit' => '' ,
'format' => 'html' , 'before' => '' ,
2007-05-11 05:10:05 +02:00
'after' => '' , 'show_post_count' => false
);
2007-06-14 04:25:30 +02:00
2007-05-11 05:10:05 +02:00
$r = wp_parse_args ( $args , $defaults );
2007-06-15 00:45:40 +02:00
extract ( $r , EXTR_SKIP );
2005-10-18 01:41:28 +02:00
if ( '' == $type )
$type = 'monthly' ;
if ( '' != $limit ) {
2008-01-29 19:48:38 +01:00
$limit = absint ( $limit );
2005-10-18 01:41:28 +02:00
$limit = ' LIMIT ' . $limit ;
}
2006-06-15 22:28:47 +02:00
2005-10-18 01:41:28 +02:00
// this is what will separate dates on weekly archive links
$archive_week_separator = '–' ;
// over-ride general date format ? 0 = no: use the date format set in Options, 1 = yes: over-ride
$archive_date_format_over_ride = 0 ;
// options for daily archive (only if you over-ride the general date format)
$archive_day_date_format = 'Y/m/d' ;
// options for weekly archive (only if you over-ride the general date format)
$archive_week_start_date_format = 'Y/m/d' ;
$archive_week_end_date_format = 'Y/m/d' ;
if ( ! $archive_date_format_over_ride ) {
2006-08-30 23:46:31 +02:00
$archive_day_date_format = get_option ( 'date_format' );
$archive_week_start_date_format = get_option ( 'date_format' );
$archive_week_end_date_format = get_option ( 'date_format' );
2005-10-18 01:41:28 +02:00
}
2007-03-09 05:09:24 +01:00
//filters
$where = apply_filters ( 'getarchives_where' , " WHERE post_type = 'post' AND post_status = 'publish' " , $r );
$join = apply_filters ( 'getarchives_join' , " " , $r );
2005-10-18 01:41:28 +02:00
if ( 'monthly' == $type ) {
2007-10-30 07:03:11 +01:00
$query = " SELECT DISTINCT YEAR(post_date) AS `year`, MONTH(post_date) AS `month`, count(ID) as posts FROM $wpdb->posts $join $where GROUP BY YEAR(post_date), MONTH(post_date) ORDER BY post_date DESC $limit " ;
$key = md5 ( $query );
$cache = wp_cache_get ( 'wp_get_archives' , 'general' );
if ( ! isset ( $cache [ $key ] ) ) {
$arcresults = $wpdb -> get_results ( $query );
$cache [ $key ] = $arcresults ;
wp_cache_add ( 'wp_get_archives' , $cache , 'general' );
} else {
$arcresults = $cache [ $key ];
}
2005-10-18 01:41:28 +02:00
if ( $arcresults ) {
$afterafter = $after ;
foreach ( $arcresults as $arcresult ) {
$url = get_month_link ( $arcresult -> year , $arcresult -> month );
2006-11-29 22:34:51 +01:00
$text = sprintf ( __ ( '%1$s %2$d' ), $wp_locale -> get_month ( $arcresult -> month ), $arcresult -> year );
2007-09-04 01:32:58 +02:00
if ( $show_post_count )
2005-10-18 01:41:28 +02:00
$after = ' (' . $arcresult -> posts . ')' . $afterafter ;
echo get_archives_link ( $url , $text , $format , $before , $after );
}
}
2006-08-30 19:23:42 +02:00
} elseif ( 'yearly' == $type ) {
2007-10-30 07:03:11 +01:00
$query = " SELECT DISTINCT YEAR(post_date) AS `year`, count(ID) as posts FROM $wpdb->posts $join $where GROUP BY YEAR(post_date) ORDER BY post_date DESC $limit " ;
$key = md5 ( $query );
$cache = wp_cache_get ( 'wp_get_archives' , 'general' );
if ( ! isset ( $cache [ $key ] ) ) {
$arcresults = $wpdb -> get_results ( $query );
$cache [ $key ] = $arcresults ;
wp_cache_add ( 'wp_get_archives' , $cache , 'general' );
} else {
$arcresults = $cache [ $key ];
}
2006-08-30 19:23:42 +02:00
if ( $arcresults ) {
2007-02-27 16:24:54 +01:00
$afterafter = $after ;
foreach ( $arcresults as $arcresult ) {
$url = get_year_link ( $arcresult -> year );
$text = sprintf ( '%d' , $arcresult -> year );
2006-09-07 19:38:43 +02:00
if ( $show_post_count )
2007-02-27 16:24:54 +01:00
$after = ' (' . $arcresult -> posts . ')' . $afterafter ;
echo get_archives_link ( $url , $text , $format , $before , $after );
}
}
2005-10-18 01:41:28 +02:00
} elseif ( 'daily' == $type ) {
2007-10-30 07:03:11 +01:00
$query = " SELECT DISTINCT YEAR(post_date) AS `year`, MONTH(post_date) AS `month`, DAYOFMONTH(post_date) AS `dayofmonth`, count(ID) as posts FROM $wpdb->posts $join $where GROUP BY YEAR(post_date), MONTH(post_date), DAYOFMONTH(post_date) ORDER BY post_date DESC $limit " ;
$key = md5 ( $query );
$cache = wp_cache_get ( 'wp_get_archives' , 'general' );
if ( ! isset ( $cache [ $key ] ) ) {
$arcresults = $wpdb -> get_results ( $query );
$cache [ $key ] = $arcresults ;
wp_cache_add ( 'wp_get_archives' , $cache , 'general' );
} else {
$arcresults = $cache [ $key ];
}
2005-10-18 01:41:28 +02:00
if ( $arcresults ) {
2006-09-07 19:38:43 +02:00
$afterafter = $after ;
2005-10-18 01:41:28 +02:00
foreach ( $arcresults as $arcresult ) {
$url = get_day_link ( $arcresult -> year , $arcresult -> month , $arcresult -> dayofmonth );
2006-12-10 01:23:10 +01:00
$date = sprintf ( '%1$d-%2$02d-%3$02d 00:00:00' , $arcresult -> year , $arcresult -> month , $arcresult -> dayofmonth );
2005-10-18 01:41:28 +02:00
$text = mysql2date ( $archive_day_date_format , $date );
2006-09-07 19:38:43 +02:00
if ( $show_post_count )
$after = ' (' . $arcresult -> posts . ')' . $afterafter ;
2005-10-18 01:41:28 +02:00
echo get_archives_link ( $url , $text , $format , $before , $after );
}
}
} elseif ( 'weekly' == $type ) {
2006-08-30 23:46:31 +02:00
$start_of_week = get_option ( 'start_of_week' );
2007-10-30 07:03:11 +01:00
$query = " SELECT DISTINCT WEEK(post_date, $start_of_week ) AS `week`, YEAR(post_date) AS yr, DATE_FORMAT(post_date, '%Y-%m-%d') AS yyyymmdd, count(ID) as posts FROM $wpdb->posts $join $where GROUP BY WEEK(post_date, $start_of_week ), YEAR(post_date) ORDER BY post_date DESC $limit " ;
$key = md5 ( $query );
$cache = wp_cache_get ( 'wp_get_archives' , 'general' );
if ( ! isset ( $cache [ $key ] ) ) {
$arcresults = $wpdb -> get_results ( $query );
$cache [ $key ] = $arcresults ;
wp_cache_add ( 'wp_get_archives' , $cache , 'general' );
} else {
$arcresults = $cache [ $key ];
}
2005-10-18 01:41:28 +02:00
$arc_w_last = '' ;
2006-09-07 19:38:43 +02:00
$afterafter = $after ;
2005-10-18 01:41:28 +02:00
if ( $arcresults ) {
foreach ( $arcresults as $arcresult ) {
if ( $arcresult -> week != $arc_w_last ) {
$arc_year = $arcresult -> yr ;
$arc_w_last = $arcresult -> week ;
2006-08-30 23:46:31 +02:00
$arc_week = get_weekstartend ( $arcresult -> yyyymmdd , get_option ( 'start_of_week' ));
2005-10-18 01:41:28 +02:00
$arc_week_start = date_i18n ( $archive_week_start_date_format , $arc_week [ 'start' ]);
$arc_week_end = date_i18n ( $archive_week_end_date_format , $arc_week [ 'end' ]);
2006-12-10 01:23:10 +01:00
$url = sprintf ( '%1$s/%2$s%3$sm%4$s%5$s%6$sw%7$s%8$d' , get_option ( 'home' ), '' , '?' , '=' , $arc_year , '&' , '=' , $arcresult -> week );
2005-10-18 01:41:28 +02:00
$text = $arc_week_start . $archive_week_separator . $arc_week_end ;
2006-09-07 19:38:43 +02:00
if ( $show_post_count )
$after = ' (' . $arcresult -> posts . ')' . $afterafter ;
2005-10-18 01:41:28 +02:00
echo get_archives_link ( $url , $text , $format , $before , $after );
}
}
}
2006-02-19 03:07:13 +01:00
} elseif ( ( 'postbypost' == $type ) || ( 'alpha' == $type ) ) {
( 'alpha' == $type ) ? $orderby = " post_title ASC " : $orderby = " post_date DESC " ;
2007-10-30 07:03:11 +01:00
$query = " SELECT * FROM $wpdb->posts $join $where ORDER BY $orderby $limit " ;
$key = md5 ( $query );
$cache = wp_cache_get ( 'wp_get_archives' , 'general' );
if ( ! isset ( $cache [ $key ] ) ) {
$arcresults = $wpdb -> get_results ( $query );
$cache [ $key ] = $arcresults ;
wp_cache_add ( 'wp_get_archives' , $cache , 'general' );
} else {
$arcresults = $cache [ $key ];
}
2005-10-18 01:41:28 +02:00
if ( $arcresults ) {
foreach ( $arcresults as $arcresult ) {
if ( $arcresult -> post_date != '0000-00-00 00:00:00' ) {
$url = get_permalink ( $arcresult );
$arc_title = $arcresult -> post_title ;
if ( $arc_title )
2007-03-31 01:46:17 +02:00
$text = strip_tags ( apply_filters ( 'the_title' , $arc_title ));
2005-10-18 01:41:28 +02:00
else
$text = $arcresult -> ID ;
echo get_archives_link ( $url , $text , $format , $before , $after );
}
}
}
}
2004-01-27 10:58:01 +01:00
}
2005-10-18 01:41:28 +02:00
2004-09-10 01:07:46 +02:00
// Used in get_calendar
function calendar_week_mod ( $num ) {
$base = 7 ;
return ( $num - $base * floor ( $num / $base ));
}
2005-10-18 01:41:28 +02:00
2006-04-02 02:20:11 +02:00
function get_calendar ( $initial = true ) {
2007-12-06 20:49:33 +01:00
global $wpdb , $m , $monthnum , $year , $wp_locale , $posts ;
2005-10-18 01:41:28 +02:00
2006-11-23 18:56:53 +01:00
$key = md5 ( $m . $monthnum . $year );
if ( $cache = wp_cache_get ( 'get_calendar' , 'calendar' ) ) {
if ( isset ( $cache [ $key ] ) ) {
2006-11-23 19:31:27 +01:00
echo $cache [ $key ];
2006-11-23 18:56:53 +01:00
return ;
}
}
ob_start ();
2005-10-18 01:41:28 +02:00
// Quick check. If we have no posts at all, abort!
if ( ! $posts ) {
2006-02-09 11:03:48 +01:00
$gotsome = $wpdb -> get_var ( " SELECT ID from $wpdb->posts WHERE post_type = 'post' AND post_status = 'publish' ORDER BY post_date DESC LIMIT 1 " );
2005-10-18 01:41:28 +02:00
if ( ! $gotsome )
return ;
}
if ( isset ( $_GET [ 'w' ]) )
$w = '' . intval ( $_GET [ 'w' ]);
// week_begins = 0 stands for Sunday
2006-08-30 23:46:31 +02:00
$week_begins = intval ( get_option ( 'start_of_week' ));
2005-10-18 01:41:28 +02:00
// Let's figure out when we are
if ( ! empty ( $monthnum ) && ! empty ( $year ) ) {
$thismonth = '' . zeroise ( intval ( $monthnum ), 2 );
$thisyear = '' . intval ( $year );
} elseif ( ! empty ( $w ) ) {
// We need to get the month from MySQL
$thisyear = '' . intval ( substr ( $m , 0 , 4 ));
$d = (( $w - 1 ) * 7 ) + 6 ; //it seems MySQL's weeks disagree with PHP's
$thismonth = $wpdb -> get_var ( " SELECT DATE_FORMAT((DATE_ADD(' ${ thisyear } 0101', INTERVAL $d DAY) ), '%m') " );
} elseif ( ! empty ( $m ) ) {
$thisyear = '' . intval ( substr ( $m , 0 , 4 ));
if ( strlen ( $m ) < 6 )
$thismonth = '01' ;
else
$thismonth = '' . zeroise ( intval ( substr ( $m , 4 , 2 )), 2 );
} else {
2006-10-06 13:22:42 +02:00
$thisyear = gmdate ( 'Y' , current_time ( 'timestamp' ));
$thismonth = gmdate ( 'm' , current_time ( 'timestamp' ));
2005-10-18 01:41:28 +02:00
}
$unixmonth = mktime ( 0 , 0 , 0 , $thismonth , 1 , $thisyear );
// Get the next and previous month and year with at least one post
$previous = $wpdb -> get_row ( " SELECT DISTINCT MONTH(post_date) AS month, YEAR(post_date) AS year
FROM $wpdb -> posts
WHERE post_date < '$thisyear-$thismonth-01'
2006-02-09 11:03:48 +01:00
AND post_type = 'post' AND post_status = 'publish'
2005-10-18 01:41:28 +02:00
ORDER BY post_date DESC
LIMIT 1 " );
$next = $wpdb -> get_row ( " SELECT DISTINCT MONTH(post_date) AS month, YEAR(post_date) AS year
FROM $wpdb -> posts
WHERE post_date > '$thisyear-$thismonth-01'
AND MONTH ( post_date ) != MONTH ( '$thisyear-$thismonth-01' )
2006-11-24 23:55:28 +01:00
AND post_type = 'post' AND post_status = 'publish'
2005-10-18 01:41:28 +02:00
ORDER BY post_date ASC
LIMIT 1 " );
2007-02-23 02:05:59 +01:00
echo '<table id="wp-calendar" summary="' . __ ( 'Calendar' ) . ' " >
2008-01-01 19:38:32 +01:00
< caption > ' . sprintf(_c(' % 1 $s % 2 $s | Used as a calendar caption '), $wp_locale->get_month($thismonth), date(' Y ', $unixmonth)) . ' </ caption >
2005-10-18 01:41:28 +02:00
< thead >
< tr > ' ;
$myweek = array ();
for ( $wdcount = 0 ; $wdcount <= 6 ; $wdcount ++ ) {
2006-04-02 02:20:11 +02:00
$myweek [] = $wp_locale -> get_weekday (( $wdcount + $week_begins ) % 7 );
2005-10-18 01:41:28 +02:00
}
foreach ( $myweek as $wd ) {
2006-04-02 02:20:11 +02:00
$day_name = ( true == $initial ) ? $wp_locale -> get_weekday_initial ( $wd ) : $wp_locale -> get_weekday_abbrev ( $wd );
echo " \n \t \t <th abbr= \" $wd\ " scope = \ " col \" title= \" $wd\ " > $day_name </ th > " ;
2005-10-18 01:41:28 +02:00
}
echo '
</ tr >
</ thead >
< tfoot >
< tr > ' ;
if ( $previous ) {
2006-04-02 02:20:11 +02:00
echo " \n \t \t " . '<td abbr="' . $wp_locale -> get_month ( $previous -> month ) . '" colspan="3" id="prev"><a href="' .
get_month_link ( $previous -> year , $previous -> month ) . '" title="' . sprintf ( __ ( 'View posts for %1$s %2$s' ), $wp_locale -> get_month ( $previous -> month ),
date ( 'Y' , mktime ( 0 , 0 , 0 , $previous -> month , 1 , $previous -> year ))) . '">« ' . $wp_locale -> get_month_abbrev ( $wp_locale -> get_month ( $previous -> month )) . '</a></td>' ;
2005-10-18 01:41:28 +02:00
} else {
echo " \n \t \t " . '<td colspan="3" id="prev" class="pad"> </td>' ;
}
echo " \n \t \t " . '<td class="pad"> </td>' ;
if ( $next ) {
2006-04-02 02:20:11 +02:00
echo " \n \t \t " . '<td abbr="' . $wp_locale -> get_month ( $next -> month ) . '" colspan="3" id="next"><a href="' .
get_month_link ( $next -> year , $next -> month ) . '" title="' . sprintf ( __ ( 'View posts for %1$s %2$s' ), $wp_locale -> get_month ( $next -> month ),
date ( 'Y' , mktime ( 0 , 0 , 0 , $next -> month , 1 , $next -> year ))) . '">' . $wp_locale -> get_month_abbrev ( $wp_locale -> get_month ( $next -> month )) . ' »</a></td>' ;
2005-10-18 01:41:28 +02:00
} else {
echo " \n \t \t " . '<td colspan="3" id="next" class="pad"> </td>' ;
}
echo '
</ tr >
</ tfoot >
< tbody >
< tr > ' ;
// Get days with posts
$dayswithposts = $wpdb -> get_results ( " SELECT DISTINCT DAYOFMONTH(post_date)
2006-04-22 02:02:00 +02:00
FROM $wpdb -> posts WHERE MONTH ( post_date ) = '$thismonth'
AND YEAR ( post_date ) = '$thisyear'
2006-02-09 11:03:48 +01:00
AND post_type = 'post' AND post_status = 'publish'
2005-10-18 01:41:28 +02:00
AND post_date < '" . current_time(' mysql ') . ' \ '' , ARRAY_N );
if ( $dayswithposts ) {
foreach ( $dayswithposts as $daywith ) {
$daywithpost [] = $daywith [ 0 ];
}
} else {
$daywithpost = array ();
}
2007-03-07 06:29:15 +01:00
if ( strpos ( $_SERVER [ 'HTTP_USER_AGENT' ], 'MSIE' ) !== false || strpos ( strtolower ( $_SERVER [ 'HTTP_USER_AGENT' ]), 'camino' ) !== false || strpos ( strtolower ( $_SERVER [ 'HTTP_USER_AGENT' ]), 'safari' ) !== false )
2005-10-18 01:41:28 +02:00
$ak_title_separator = " \n " ;
else
$ak_title_separator = ', ' ;
$ak_titles_for_day = array ();
$ak_post_titles = $wpdb -> get_results ( " SELECT post_title, DAYOFMONTH(post_date) as dom "
. " FROM $wpdb->posts "
. " WHERE YEAR(post_date) = ' $thisyear ' "
. " AND MONTH(post_date) = ' $thismonth ' "
. " AND post_date < ' " . current_time ( 'mysql' ) . " ' "
2006-02-09 11:03:48 +01:00
. " AND post_type = 'post' AND post_status = 'publish' "
2005-10-18 01:41:28 +02:00
);
if ( $ak_post_titles ) {
foreach ( $ak_post_titles as $ak_post_title ) {
2007-06-14 04:25:30 +02:00
2007-03-10 04:56:35 +01:00
$post_title = apply_filters ( " the_title " , $ak_post_title -> post_title );
$post_title = str_replace ( '"' , '"' , wptexturize ( $post_title ));
2007-06-14 04:25:30 +02:00
2005-10-18 01:41:28 +02:00
if ( empty ( $ak_titles_for_day [ 'day_' . $ak_post_title -> dom ]) )
$ak_titles_for_day [ 'day_' . $ak_post_title -> dom ] = '' ;
if ( empty ( $ak_titles_for_day [ " $ak_post_title->dom " ]) ) // first one
2007-03-10 04:56:35 +01:00
$ak_titles_for_day [ " $ak_post_title->dom " ] = $post_title ;
2005-10-18 01:41:28 +02:00
else
2007-03-10 04:56:35 +01:00
$ak_titles_for_day [ " $ak_post_title->dom " ] .= $ak_title_separator . $post_title ;
2005-10-18 01:41:28 +02:00
}
}
// See how much we should pad in the beginning
$pad = calendar_week_mod ( date ( 'w' , $unixmonth ) - $week_begins );
if ( 0 != $pad )
echo " \n \t \t " . '<td colspan="' . $pad . '" class="pad"> </td>' ;
$daysinmonth = intval ( date ( 't' , $unixmonth ));
for ( $day = 1 ; $day <= $daysinmonth ; ++ $day ) {
if ( isset ( $newrow ) && $newrow )
echo " \n \t </tr> \n \t <tr> \n \t \t " ;
$newrow = false ;
2006-08-30 23:46:31 +02:00
if ( $day == gmdate ( 'j' , ( time () + ( get_option ( 'gmt_offset' ) * 3600 ))) && $thismonth == gmdate ( 'm' , time () + ( get_option ( 'gmt_offset' ) * 3600 )) && $thisyear == gmdate ( 'Y' , time () + ( get_option ( 'gmt_offset' ) * 3600 )) )
2005-10-18 01:41:28 +02:00
echo '<td id="today">' ;
else
echo '<td>' ;
if ( in_array ( $day , $daywithpost ) ) // any posts today?
echo '<a href="' . get_day_link ( $thisyear , $thismonth , $day ) . " \" title= \" $ak_titles_for_day[$day] \" > $day </a> " ;
else
echo $day ;
echo '</td>' ;
if ( 6 == calendar_week_mod ( date ( 'w' , mktime ( 0 , 0 , 0 , $thismonth , $day , $thisyear )) - $week_begins ) )
$newrow = true ;
}
$pad = 7 - calendar_week_mod ( date ( 'w' , mktime ( 0 , 0 , 0 , $thismonth , $day , $thisyear )) - $week_begins );
if ( $pad != 0 && $pad != 7 )
echo " \n \t \t " . '<td class="pad" colspan="' . $pad . '"> </td>' ;
echo " \n \t </tr> \n \t </tbody> \n \t </table> " ;
2006-11-23 18:56:53 +01:00
$output = ob_get_contents ();
ob_end_clean ();
echo $output ;
$cache [ $key ] = $output ;
2007-09-15 23:50:53 +02:00
wp_cache_set ( 'get_calendar' , $cache , 'calendar' );
2006-11-23 18:56:53 +01:00
}
function delete_get_calendar_cache () {
wp_cache_delete ( 'get_calendar' , 'calendar' );
2004-01-27 10:58:01 +01:00
}
2006-11-23 18:56:53 +01:00
add_action ( 'save_post' , 'delete_get_calendar_cache' );
add_action ( 'delete_post' , 'delete_get_calendar_cache' );
add_action ( 'update_option_start_of_week' , 'delete_get_calendar_cache' );
add_action ( 'update_option_gmt_offset' , 'delete_get_calendar_cache' );
add_action ( 'update_option_start_of_week' , 'delete_get_calendar_cache' );
2004-01-27 10:58:01 +01:00
2005-10-18 01:41:28 +02:00
2004-01-27 10:58:01 +01:00
function allowed_tags () {
2005-10-18 01:41:28 +02:00
global $allowedtags ;
2004-05-08 01:56:33 +02:00
$allowed = '' ;
2005-10-18 01:41:28 +02:00
foreach ( $allowedtags as $tag => $attributes ) {
$allowed .= '<' . $tag ;
if ( 0 < count ( $attributes ) ) {
foreach ( $attributes as $attribute => $limits ) {
$allowed .= ' ' . $attribute . '=""' ;
}
}
$allowed .= '> ' ;
}
return htmlentities ( $allowed );
2004-01-27 10:58:01 +01:00
}
2005-10-18 01:41:28 +02:00
2004-01-27 10:58:01 +01:00
/***** Date/Time tags *****/
2005-10-18 01:41:28 +02:00
2004-01-27 10:58:01 +01:00
function the_date_xml () {
2005-10-18 01:41:28 +02:00
global $post ;
echo mysql2date ( 'Y-m-d' , $post -> post_date );
//echo ""+$post->post_date;
2004-01-27 10:58:01 +01:00
}
2005-10-18 01:41:28 +02:00
2004-01-27 10:58:01 +01:00
function the_date ( $d = '' , $before = '' , $after = '' , $echo = true ) {
2007-12-06 20:49:33 +01:00
global $post , $day , $previousday ;
2005-10-18 01:41:28 +02:00
$the_date = '' ;
if ( $day != $previousday ) {
$the_date .= $before ;
if ( $d == '' )
2006-08-30 23:46:31 +02:00
$the_date .= mysql2date ( get_option ( 'date_format' ), $post -> post_date );
2005-10-18 01:41:28 +02:00
else
$the_date .= mysql2date ( $d , $post -> post_date );
$the_date .= $after ;
$previousday = $day ;
}
$the_date = apply_filters ( 'the_date' , $the_date , $d , $before , $after );
if ( $echo )
echo $the_date ;
else
return $the_date ;
2004-01-27 10:58:01 +01:00
}
2005-10-18 01:41:28 +02:00
2006-08-30 18:46:08 +02:00
function the_modified_date ( $d = '' ) {
echo apply_filters ( 'the_modified_date' , get_the_modified_date ( $d ), $d );
}
function get_the_modified_date ( $d = '' ) {
if ( '' == $d )
2006-08-30 23:46:31 +02:00
$the_time = get_post_modified_time ( get_option ( 'date_format' ));
2006-08-30 18:46:08 +02:00
else
$the_time = get_post_modified_time ( $d );
return apply_filters ( 'get_the_modified_date' , $the_time , $d );
}
2005-01-07 23:01:59 +01:00
function the_time ( $d = '' ) {
2005-02-06 04:40:08 +01:00
echo apply_filters ( 'the_time' , get_the_time ( $d ), $d );
2005-01-07 23:01:59 +01:00
}
2005-10-18 01:41:28 +02:00
2005-01-07 23:01:59 +01:00
function get_the_time ( $d = '' ) {
if ( '' == $d )
2006-08-30 23:46:31 +02:00
$the_time = get_post_time ( get_option ( 'time_format' ));
2005-01-07 23:01:59 +01:00
else
2005-01-19 03:21:36 +01:00
$the_time = get_post_time ( $d );
2005-02-06 04:40:08 +01:00
return apply_filters ( 'get_the_time' , $the_time , $d );
2005-01-07 23:01:59 +01:00
}
2005-10-18 01:41:28 +02:00
2005-01-19 03:21:36 +01:00
function get_post_time ( $d = 'U' , $gmt = false ) { // returns timestamp
2005-01-07 23:01:59 +01:00
global $post ;
if ( $gmt )
2005-01-19 03:21:36 +01:00
$time = $post -> post_date_gmt ;
2005-01-07 23:01:59 +01:00
else
2005-01-19 03:21:36 +01:00
$time = $post -> post_date ;
$time = mysql2date ( $d , $time );
2005-02-06 04:40:08 +01:00
return apply_filters ( 'get_the_time' , $time , $d , $gmt );
2004-01-27 10:58:01 +01:00
}
2005-10-18 01:41:28 +02:00
2005-11-11 00:31:30 +01:00
function the_modified_time ( $d = '' ) {
echo apply_filters ( 'the_modified_time' , get_the_modified_time ( $d ), $d );
}
function get_the_modified_time ( $d = '' ) {
if ( '' == $d )
2006-08-30 23:46:31 +02:00
$the_time = get_post_modified_time ( get_option ( 'time_format' ));
2005-11-11 00:31:30 +01:00
else
$the_time = get_post_modified_time ( $d );
return apply_filters ( 'get_the_modified_time' , $the_time , $d );
}
function get_post_modified_time ( $d = 'U' , $gmt = false ) { // returns timestamp
global $post ;
if ( $gmt )
$time = $post -> post_modified_gmt ;
else
$time = $post -> post_modified ;
$time = mysql2date ( $d , $time );
return apply_filters ( 'get_the_modified_time' , $time , $d , $gmt );
}
2004-01-27 10:58:01 +01:00
function the_weekday () {
2007-12-06 20:49:33 +01:00
global $wp_locale , $post ;
2006-04-02 02:20:11 +02:00
$the_weekday = $wp_locale -> get_weekday ( mysql2date ( 'w' , $post -> post_date ));
2005-10-18 01:41:28 +02:00
$the_weekday = apply_filters ( 'the_weekday' , $the_weekday );
echo $the_weekday ;
2004-01-27 10:58:01 +01:00
}
2005-10-18 01:41:28 +02:00
2004-01-27 10:58:01 +01:00
function the_weekday_date ( $before = '' , $after = '' ) {
2007-12-06 20:49:33 +01:00
global $wp_locale , $post , $day , $previousweekday ;
2005-10-18 01:41:28 +02:00
$the_weekday_date = '' ;
if ( $day != $previousweekday ) {
$the_weekday_date .= $before ;
2006-04-02 02:20:11 +02:00
$the_weekday_date .= $wp_locale -> get_weekday ( mysql2date ( 'w' , $post -> post_date ));
2005-10-18 01:41:28 +02:00
$the_weekday_date .= $after ;
$previousweekday = $day ;
}
$the_weekday_date = apply_filters ( 'the_weekday_date' , $the_weekday_date , $before , $after );
echo $the_weekday_date ;
2004-01-27 10:58:01 +01:00
}
2006-06-08 01:17:59 +02:00
function wp_head () {
do_action ( 'wp_head' );
}
function wp_footer () {
do_action ( 'wp_footer' );
}
2005-11-07 10:47:51 +01:00
function rsd_link () {
2008-01-02 19:21:19 +01:00
echo '<link rel="EditURI" type="application/rsd+xml" title="RSD" href="' . get_bloginfo ( 'wpurl' ) . " /xmlrpc.php?rsd \" /> \n " ;
2007-10-05 19:29:34 +02:00
}
function wlwmanifest_link () {
2008-01-02 19:21:19 +01:00
echo '<link rel="wlwmanifest" type="application/wlwmanifest+xml" href="'
. get_bloginfo ( 'wpurl' ) . '/wp-includes/wlwmanifest.xml" /> ' . " \n " ;
2005-11-07 10:47:51 +01:00
}
2006-02-18 08:40:43 +01:00
function noindex () {
// If the blog is not public, tell robots to go away.
2006-06-18 01:38:45 +02:00
if ( '0' == get_option ( 'blog_public' ) )
echo " <meta name='robots' content='noindex,nofollow' /> \n " ;
2006-02-18 08:40:43 +01:00
}
2006-06-08 01:17:59 +02:00
2006-10-24 05:57:19 +02:00
function rich_edit_exists () {
global $wp_rich_edit_exists ;
if ( ! isset ( $wp_rich_edit_exists ) )
$wp_rich_edit_exists = file_exists ( ABSPATH . WPINC . '/js/tinymce/tiny_mce.js' );
return $wp_rich_edit_exists ;
}
2006-09-23 00:24:50 +02:00
2006-10-24 05:57:19 +02:00
function user_can_richedit () {
2006-12-07 01:38:54 +01:00
global $wp_rich_edit , $pagenow ;
2007-06-14 04:25:30 +02:00
2007-05-10 03:31:12 +02:00
if ( ! isset ( $wp_rich_edit ) ) {
2007-09-04 01:32:58 +02:00
if ( get_user_option ( 'rich_editing' ) == 'true' &&
( ( preg_match ( '!AppleWebKit/(\d+)!' , $_SERVER [ 'HTTP_USER_AGENT' ], $match ) && intval ( $match [ 1 ]) >= 420 ) ||
2007-07-05 22:11:32 +02:00
! preg_match ( '!opera[ /][2-8]|konqueror|safari!i' , $_SERVER [ 'HTTP_USER_AGENT' ] ) )
&& 'comment.php' != $pagenow ) {
2007-05-10 03:31:12 +02:00
$wp_rich_edit = true ;
} else {
$wp_rich_edit = false ;
}
}
2006-09-23 00:24:50 +02:00
2006-10-24 05:57:19 +02:00
return apply_filters ( 'user_can_richedit' , $wp_rich_edit );
2006-09-23 00:24:50 +02:00
}
2008-01-06 20:01:32 +01:00
function wp_default_editor () {
$r = user_can_richedit () ? 'tinymce' : 'html' ; // defaults
if ( $user = wp_get_current_user () ) { // look for cookie
if ( isset ( $_COOKIE [ 'wordpress_editor_' . $user -> ID ]) && in_array ( $_COOKIE [ 'wordpress_editor_' . $user -> ID ], array ( 'tinymce' , 'html' , 'test' ) ) )
$r = $_COOKIE [ 'wordpress_editor_' . $user -> ID ];
}
return apply_filters ( 'wp_default_editor' , $r ); // filter
}
2006-06-08 01:17:59 +02:00
function the_editor ( $content , $id = 'content' , $prev_id = 'title' ) {
2006-08-30 23:46:31 +02:00
$rows = get_option ( 'default_post_edit_rows' );
2006-06-08 01:17:59 +02:00
if (( $rows < 3 ) || ( $rows > 100 ))
$rows = 12 ;
$rows = " rows=' $rows ' " ;
2006-09-22 09:04:41 +02:00
if ( user_can_richedit () ) :
2008-01-06 20:01:32 +01:00
$wp_default_editor = wp_default_editor ();
$active = " class='active' " ;
2008-01-31 19:10:46 +01:00
$inactive = " onclick='switchEditors.go( \" $id\ " ); ' " ;
2008-01-06 20:01:32 +01:00
if ( 'tinymce' == $wp_default_editor )
add_filter ( 'the_editor_content' , 'wp_richedit_pre' );
2008-02-09 08:29:36 +01:00
else if ( 'html' == $wp_default_editor )
add_filter ( 'the_editor_content' , 'wp_htmledit_pre' );
2006-06-08 01:17:59 +02:00
2008-02-05 07:47:27 +01:00
// The following line moves the border so that the active button "attaches" to the toolbar. Only IE needs it.
?>
2008-01-31 19:10:46 +01:00
< style type = " text/css " >
2006-09-22 09:04:41 +02:00
#postdivrich table, #postdivrich #quicktags {border-top: none;}
#quicktags {border-bottom: none; padding-bottom: 2px; margin-bottom: -1px;}
2006-09-23 00:24:50 +02:00
</ style >
2008-02-05 07:47:27 +01:00
2008-01-03 09:03:29 +01:00
< div id = 'editor-toolbar' style = 'display:none;' >
2008-01-31 19:10:46 +01:00
< div class = 'zerosize' >< input accesskey = 'e' type = 'button' onclick = 'switchEditors.go("<?php echo $id; ?>")' /></ div >
2008-01-06 20:01:32 +01:00
< a id = 'edButtonHTML' < ? php echo 'html' == $wp_default_editor ? $active : $inactive ; ?> ><?php _e('HTML'); ?></a>
< a id = 'edButtonPreview' < ? php echo 'tinymce' == $wp_default_editor ? $active : $inactive ; ?> ><?php _e('Visual'); ?></a>
< div id = " media-buttons " >
< ? php _e ( 'Add media:' ); ?>
< ? php do_action ( 'media_buttons' ); ?>
</ div >
2006-09-22 09:04:41 +02:00
</ div >
2008-01-06 20:01:32 +01:00
2006-09-22 09:04:41 +02:00
< script type = " text/javascript " >
2007-01-07 03:25:03 +01:00
// <![CDATA[
2008-01-17 16:44:05 +01:00
if ( typeof tinyMCE != " undefined " )
2008-01-03 09:03:29 +01:00
document . getElementById ( 'editor-toolbar' ) . style . display = 'block' ;
2007-01-07 03:25:03 +01:00
// ]]>
2006-09-22 09:04:41 +02:00
</ script >
2008-02-07 05:21:22 +01:00
< ? php else : // Rich editor is disabled in profile but we still need the media buttons ?>
< div id = 'editor-toolbar' style = 'display:block;' >
< div id = " media-buttons " >
< ? php _e ( 'Add media:' ); ?>
< ? php do_action ( 'media_buttons' ); ?>
</ div >
</ div >
2006-09-22 09:04:41 +02:00
2008-01-06 20:01:32 +01:00
< ? php endif ; // user_can_richedit() ?>
2006-09-22 09:04:41 +02:00
< div id = " quicktags " >
< ? php wp_print_scripts ( 'quicktags' ); ?>
< script type = " text/javascript " > edToolbar () </ script >
</ div >
2008-01-06 20:01:32 +01:00
< ? php if ( 'html' != $wp_default_editor ) : ?>
2006-09-22 09:04:41 +02:00
< script type = " text/javascript " >
2007-01-07 03:25:03 +01:00
// <![CDATA[
2008-01-17 16:44:05 +01:00
if ( typeof tinyMCE != " undefined " )
2006-09-22 09:04:41 +02:00
document . getElementById ( " quicktags " ) . style . display = " none " ;
2007-01-07 03:25:03 +01:00
// ]]>
2006-09-22 09:04:41 +02:00
</ script >
2008-01-06 20:01:32 +01:00
< ? php endif ; // 'html' != $wp_default_editor
2006-09-22 09:04:41 +02:00
2008-01-31 19:10:46 +01:00
$the_editor = apply_filters ( 'the_editor' , " <div id='editorcontainer'><textarea class='' $rows cols='40' name=' $id ' tabindex='2' id=' $id '>%s</textarea></div> \n " );
2006-06-08 01:17:59 +02:00
$the_editor_content = apply_filters ( 'the_editor_content' , $content );
printf ( $the_editor , $the_editor_content );
?>
< script type = " text/javascript " >
//<!--
edCanvas = document . getElementById ( '<?php echo $id; ?>' );
2006-09-22 09:04:41 +02:00
< ? php if ( $prev_id && user_can_richedit () ) : ?>
2007-05-31 02:24:31 +02:00
// If tinyMCE is defined.
if ( typeof tinyMCE != 'undefined' ) {
2006-06-08 01:17:59 +02:00
// This code is meant to allow tabbing from Title to Post (TinyMCE).
2008-01-31 19:10:46 +01:00
document . getElementById ( '<?php echo $prev_id; ?>' ) . onkeydown = function ( e ) {
e = e || window . event ;
if ( e . keyCode == 9 && ! e . shiftKey && ! e . controlKey && ! e . altKey ) {
if ( tinyMCE . activeEditor ) {
e = null ;
if ( tinyMCE . activeEditor . isHidden () ) return true ;
tinyMCE . activeEditor . focus ();
return false ;
}
return true ;
}
}
2007-05-31 02:24:31 +02:00
}
2006-06-08 01:17:59 +02:00
< ? php endif ; ?>
//-->
</ script >
< ? php
}
2007-05-24 05:37:10 +02:00
function get_search_query () {
return apply_filters ( 'get_search_query' , stripslashes ( get_query_var ( 's' ) ) );
}
2006-09-07 19:37:26 +02:00
function the_search_query () {
2007-05-24 05:37:10 +02:00
echo attribute_escape ( apply_filters ( 'the_search_query' , get_search_query () ) );
2006-09-07 19:37:26 +02:00
}
2007-12-19 18:44:02 +01:00
function language_attributes ( $doctype = 'html' ) {
$attributes = array ();
2006-09-24 22:16:13 +02:00
$output = '' ;
2008-02-05 07:47:27 +01:00
2006-09-24 22:16:13 +02:00
if ( $dir = get_bloginfo ( 'text_direction' ) )
2007-12-19 18:44:02 +01:00
$attributes [] = " dir= \" $dir\ " " ;
2008-02-05 07:47:27 +01:00
2006-09-24 22:16:13 +02:00
if ( $lang = get_bloginfo ( 'language' ) ) {
2007-12-19 18:44:02 +01:00
if ( get_option ( 'html_type' ) == 'text/html' || $doctype == 'xhtml' )
$attributes [] = " lang= \" $lang\ " " ;
2008-02-05 07:47:27 +01:00
2007-12-19 18:44:02 +01:00
if ( get_option ( 'html_type' ) != 'text/html' || $doctype == 'xhtml' )
$attributes [] = " xml:lang= \" $lang\ " " ;
}
2008-02-05 07:47:27 +01:00
2007-12-19 18:44:02 +01:00
$output = implode ( ' ' , $attributes );
$output = apply_filters ( 'language_attributes' , $output );
2006-09-24 22:16:13 +02:00
echo $output ;
}
2006-10-03 09:16:49 +02:00
2007-06-15 00:46:59 +02:00
function paginate_links ( $args = '' ) {
2007-09-04 01:32:58 +02:00
$defaults = array (
2007-06-15 00:46:59 +02:00
'base' => '%_%' , // http://example.com/all_posts.php%_% : %_% is replaced by format (below)
'format' => '?page=%#%' , // ?page=%#% : %#% is replaced by the page number
'total' => 1 ,
'current' => 0 ,
'show_all' => false ,
'prev_next' => true ,
'prev_text' => __ ( '« Previous' ),
'next_text' => __ ( 'Next »' ),
'end_size' => 1 , // How many numbers on either end including the end
'mid_size' => 2 , // How many numbers to either side of current not including current
'type' => 'plain' ,
'add_args' => false // array of query args to aadd
);
$args = wp_parse_args ( $args , $defaults );
extract ( $args , EXTR_SKIP );
2006-10-03 09:16:49 +02:00
// Who knows what else people pass in $args
$total = ( int ) $total ;
2006-10-03 17:40:26 +02:00
if ( $total < 2 )
return ;
2006-10-03 09:16:49 +02:00
$current = ( int ) $current ;
$end_size = 0 < ( int ) $end_size ? ( int ) $end_size : 1 ; // Out of bounds? Make it the default.
$mid_size = 0 <= ( int ) $mid_size ? ( int ) $mid_size : 2 ;
$add_args = is_array ( $add_args ) ? $add_args : false ;
$r = '' ;
$page_links = array ();
$n = 0 ;
$dots = false ;
if ( $prev_next && $current && 1 < $current ) :
2006-10-03 17:40:26 +02:00
$link = str_replace ( '%_%' , 2 == $current ? '' : $format , $base );
$link = str_replace ( '%#%' , $current - 1 , $link );
2006-10-03 09:16:49 +02:00
if ( $add_args )
$link = add_query_arg ( $add_args , $link );
2007-03-17 09:46:59 +01:00
$page_links [] = " <a class='prev page-numbers' href=' " . clean_url ( $link ) . " '> $prev_text </a> " ;
2006-10-03 09:16:49 +02:00
endif ;
for ( $n = 1 ; $n <= $total ; $n ++ ) :
if ( $n == $current ) :
$page_links [] = " <span class='page-numbers current'> $n </span> " ;
$dots = true ;
else :
if ( $show_all || ( $n <= $end_size || ( $current && $n >= $current - $mid_size && $n <= $current + $mid_size ) || $n > $total - $end_size ) ) :
2006-10-03 17:40:26 +02:00
$link = str_replace ( '%_%' , 1 == $n ? '' : $format , $base );
$link = str_replace ( '%#%' , $n , $link );
2006-10-03 09:16:49 +02:00
if ( $add_args )
$link = add_query_arg ( $add_args , $link );
2007-03-17 09:46:59 +01:00
$page_links [] = " <a class='page-numbers' href=' " . clean_url ( $link ) . " '> $n </a> " ;
2006-10-03 09:16:49 +02:00
$dots = true ;
elseif ( $dots && ! $show_all ) :
$page_links [] = " <span class='page-numbers dots'>...</span> " ;
$dots = false ;
endif ;
endif ;
endfor ;
if ( $prev_next && $current && ( $current < $total || - 1 == $total ) ) :
2006-10-03 17:40:26 +02:00
$link = str_replace ( '%_%' , $format , $base );
$link = str_replace ( '%#%' , $current + 1 , $link );
2006-10-03 09:16:49 +02:00
if ( $add_args )
$link = add_query_arg ( $add_args , $link );
2007-03-17 09:46:59 +01:00
$page_links [] = " <a class='next page-numbers' href=' " . clean_url ( $link ) . " '> $next_text </a> " ;
2006-10-03 09:16:49 +02:00
endif ;
switch ( $type ) :
case 'array' :
return $page_links ;
break ;
case 'list' :
$r .= " <ul class='page-numbers'> \n \t <li> " ;
$r .= join ( " </li> \n \t <li> " , $page_links );
$r .= " </li> \n </ul> \n " ;
break ;
default :
$r = join ( " \n " , $page_links );
break ;
endswitch ;
return $r ;
}
2007-08-29 01:23:38 +02:00
function wp_admin_css_uri ( $file = 'wp-admin' ) {
2007-09-03 22:20:18 +02:00
if ( defined ( 'WP_INSTALLING' ) )
{
$_file = add_query_arg ( 'version' , get_bloginfo ( 'version' ), " ./ $file .css " );
} else {
$_file = add_query_arg ( 'version' , get_bloginfo ( 'version' ), get_option ( 'siteurl' ) . " /wp-admin/ $file .css " );
2007-09-04 01:32:58 +02:00
}
2007-08-29 01:23:38 +02:00
return apply_filters ( 'wp_admin_css_uri' , $_file , $file );
}
function wp_admin_css ( $file = 'wp-admin' ) {
echo apply_filters ( 'wp_admin_css' , " <link rel='stylesheet' href=' " . wp_admin_css_uri ( $file ) . " ' type='text/css' /> \n " , $file );
if ( 'rtl' == get_bloginfo ( 'text_direction' ) ) {
$rtl = ( 'wp-admin' == $file ) ? 'rtl' : " $file -rtl " ;
echo apply_filters ( 'wp_admin_css' , " <link rel='stylesheet' href=' " . wp_admin_css_uri ( $rtl ) . " ' type='text/css' /> \n " , $rtl );
}
}
2007-10-06 08:55:24 +02:00
/**
* Outputs the XHTML generator that is generated on the wp_head hook .
*/
function wp_generator ()
{
the_generator ( apply_filters ( 'wp_generator_type' , 'xhtml' ) );
}
/**
* Outputs the generator XML or Comment for RSS , ATOM , etc .
* @ param { String } $type The type of generator to return .
*/
function the_generator ( $type ) {
echo apply_filters ( 'the_generator' , get_the_generator ( $type ), $type ) . " \n " ;
}
/**
* Creates the generator XML or Comment for RSS , ATOM , etc .
* @ param { String } $type The type of generator to return .
*/
function get_the_generator ( $type ) {
switch ( $type ) {
case 'html' :
2008-01-02 19:21:19 +01:00
$gen = '<meta name="generator" content="WordPress/' . get_bloginfo ( 'version' ) . '">' . " \n " ;
2007-10-06 08:55:24 +02:00
break ;
case 'xhtml' :
2008-01-02 19:21:19 +01:00
$gen = '<meta name="generator" content="WordPress/' . get_bloginfo ( 'version' ) . '" />' . " \n " ;
2007-10-06 08:55:24 +02:00
break ;
case 'atom' :
$gen = '<generator uri="http://wordpress.org/" version="' . get_bloginfo_rss ( 'version' ) . '">WordPress</generator>' ;
break ;
case 'rss2' :
$gen = '<generator>http://wordpress.org/?v=' . get_bloginfo_rss ( 'version' ) . '</generator>' ;
break ;
case 'rdf' :
$gen = '<admin:generatorAgent rdf:resource="http://wordpress.org/?v=' . get_bloginfo_rss ( 'version' ) . '" />' ;
break ;
case 'comment' :
$gen = '<!-- generator="WordPress/' . get_bloginfo ( 'version' ) . '" -->' ;
break ;
case 'export' :
$gen = '<!-- generator="wordpress/' . get_bloginfo_rss ( 'version' ) . '" created="' . date ( 'Y-m-d H:i' ) . '"-->' ;
break ;
}
return apply_filters ( " get_the_generator_ { $type } " , $gen , $type );
}
2005-11-11 01:48:31 +01:00
?>