[ Index ]

WordPress Source Cross Reference

title

Body

[close]

/wp-includes/ -> general-template.php (source)

   1  <?php
   2  
   3  /* Note: these tags go anywhere in the template */
   4  
   5  function get_header() {
   6      if ( file_exists( TEMPLATEPATH . '/header.php') )
   7          load_template( TEMPLATEPATH . '/header.php');
   8      else
   9          load_template( ABSPATH . 'wp-content/themes/default/header.php');
  10  }
  11  
  12  
  13  function get_footer() {
  14      if ( file_exists( TEMPLATEPATH . '/footer.php') )
  15          load_template( TEMPLATEPATH . '/footer.php');
  16      else
  17          load_template( ABSPATH . 'wp-content/themes/default/footer.php');
  18  }
  19  
  20  
  21  function get_sidebar() {
  22      if ( file_exists( TEMPLATEPATH . '/sidebar.php') )
  23          load_template( TEMPLATEPATH . '/sidebar.php');
  24      else
  25          load_template( ABSPATH . 'wp-content/themes/default/sidebar.php');
  26  }
  27  
  28  
  29  function wp_loginout() {
  30      if ( ! is_user_logged_in() )
  31          $link = '<a href="' . get_settings('siteurl') . '/wp-login.php">' . __('Login') . '</a>';
  32      else
  33          $link = '<a href="' . get_settings('siteurl') . '/wp-login.php?action=logout">' . __('Logout') . '</a>';
  34  
  35      echo apply_filters('loginout', $link);
  36  }
  37  
  38  
  39  function wp_register( $before = '<li>', $after = '</li>' ) {
  40  
  41      if ( ! is_user_logged_in() ) {
  42          if ( get_settings('users_can_register') )
  43              $link = $before . '<a href="' . get_settings('siteurl') . '/wp-register.php">' . __('Register') . '</a>' . $after;
  44          else
  45              $link = '';
  46      } else {
  47          $link = $before . '<a href="' . get_settings('siteurl') . '/wp-admin/">' . __('Site Admin') . '</a>' . $after;
  48      }
  49  
  50      echo apply_filters('register', $link);
  51  }
  52  
  53  
  54  function wp_meta() {
  55      do_action('wp_meta');
  56  }
  57  
  58  
  59  function bloginfo($show='') {
  60      $info = get_bloginfo($show);
  61      if (!strstr($show, 'url') && //don't filter URLs
  62          !strstr($show, 'directory') &&
  63          !strstr($show, 'home')) {
  64          $info = apply_filters('bloginfo', $info, $show);
  65          $info = convert_chars($info);
  66      }
  67  
  68      echo $info;
  69  }
  70  
  71  
  72  function get_bloginfo($show='') {
  73  
  74      switch($show) {
  75          case 'url' :
  76          case 'home' :
  77          case 'siteurl' :
  78              $output = get_settings('home');
  79              break;
  80          case 'wpurl' :
  81              $output = get_settings('siteurl');
  82              break;
  83          case 'description':
  84              $output = get_settings('blogdescription');
  85              break;
  86          case 'rdf_url':
  87              $output = get_feed_link('rdf');
  88              break;
  89          case 'rss_url':
  90              $output = get_feed_link('rss');
  91              break;
  92          case 'rss2_url':
  93              $output = get_feed_link('rss2');
  94              break;
  95          case 'atom_url':
  96              $output = get_feed_link('atom');
  97              break;
  98          case 'comments_rss2_url':
  99              $output = get_feed_link('comments_rss2');
 100              break;
 101          case 'pingback_url':
 102              $output = get_settings('siteurl') .'/xmlrpc.php';
 103              break;
 104          case 'stylesheet_url':
 105              $output = get_stylesheet_uri();
 106              break;
 107          case 'stylesheet_directory':
 108              $output = get_stylesheet_directory_uri();
 109              break;
 110          case 'template_directory':
 111          case 'template_url':
 112              $output = get_template_directory_uri();
 113              break;
 114          case 'admin_email':
 115              $output = get_settings('admin_email');
 116              break;
 117          case 'charset':
 118              $output = get_settings('blog_charset');
 119              if ('' == $output) $output = 'UTF-8';
 120              break;
 121          case 'html_type' :
 122              $output = get_option('html_type');
 123              break;
 124          case 'version':
 125              global $wp_version;
 126              $output = $wp_version;
 127              break;
 128          case 'name':
 129          default:
 130              $output = get_settings('blogname');
 131              break;
 132      }
 133      return $output;
 134  }
 135  
 136  
 137  function wp_title($sep = '&raquo;', $display = true) {
 138      global $wpdb;
 139      global $m, $year, $monthnum, $day, $category_name, $wp_locale, $posts;
 140  
 141      $cat = get_query_var('cat');
 142      $p = get_query_var('p');
 143      $name = get_query_var('name');
 144      $category_name = get_query_var('category_name');
 145      $author = get_query_var('author');
 146      $author_name = get_query_var('author_name');
 147  
 148      // If there's a category
 149      if ( !empty($cat) ) {
 150              // category exclusion
 151              if ( !stristr($cat,'-') )
 152                  $title = get_the_category_by_ID($cat);
 153      }
 154      if ( !empty($category_name) ) {
 155          if ( stristr($category_name,'/') ) {
 156                  $category_name = explode('/',$category_name);
 157                  if ( $category_name[count($category_name)-1] )
 158                      $category_name = $category_name[count($category_name)-1]; // no trailing slash
 159                  else
 160                      $category_name = $category_name[count($category_name)-2]; // there was a trailling slash
 161          }
 162          $title = $wpdb->get_var("SELECT cat_name FROM $wpdb->categories WHERE category_nicename = '$category_name'");
 163      }
 164  
 165      // If there's an author
 166      if ( !empty($author) ) {
 167          $title = get_userdata($author);
 168          $title = $title->display_name;
 169      }
 170      if ( !empty($author_name) ) {
 171          // We do a direct query here because we don't cache by nicename.
 172          $title = $wpdb->get_var("SELECT display_name FROM $wpdb->users WHERE user_nicename = '$author_name'");
 173      }
 174  
 175      // If there's a month
 176      if ( !empty($m) ) {
 177          $my_year = substr($m, 0, 4);
 178          $my_month = $wp_locale->get_month($m);
 179          $title = "$my_year $sep $my_month";
 180      }
 181  
 182      if ( !empty($year) ) {
 183          $title = $year;
 184          if ( !empty($monthnum) )
 185              $title .= " $sep ".$wp_locale->get_month($monthnum);
 186          if ( !empty($day) )
 187              $title .= " $sep ".zeroise($day, 2);
 188      }
 189  
 190      // If there is a post
 191      if ( is_single() || is_page() ) {
 192          $title = strip_tags($posts[0]->post_title);
 193          $title = apply_filters('single_post_title', $title);
 194      }
 195  
 196      $prefix = '';
 197      if ( isset($title) )
 198          $prefix = " $sep ";
 199  
 200      $title = $prefix . $title;
 201      $title = apply_filters('wp_title', $title, $sep);
 202  
 203      // Send it out
 204      if ( $display )
 205          echo $title;
 206      else
 207          return $title;
 208  }
 209  
 210  
 211  function single_post_title($prefix = '', $display = true) {
 212      global $wpdb;
 213      $p = get_query_var('p');
 214      $name = get_query_var('name');
 215  
 216      if ( intval($p) || '' != $name ) {
 217          if ( !$p )
 218              $p = $wpdb->get_var("SELECT ID FROM $wpdb->posts WHERE post_name = '$name'");
 219          $post = & get_post($p);
 220          $title = $post->post_title;
 221          $title = apply_filters('single_post_title', $title);
 222          if ( $display )
 223              echo $prefix.strip_tags($title);
 224          else
 225              return strip_tags($title);
 226      }
 227  }
 228  
 229  
 230  function single_cat_title($prefix = '', $display = true ) {
 231      $cat = intval( get_query_var('cat') );
 232      if ( !empty($cat) && !(strtoupper($cat) == 'ALL') ) {
 233          $my_cat_name = get_the_category_by_ID($cat);
 234          if ( !empty($my_cat_name) ) {
 235              if ( $display )
 236                  echo $prefix.strip_tags($my_cat_name);
 237              else
 238                  return strip_tags($my_cat_name);
 239          }
 240      }
 241  }
 242  
 243  
 244  function single_month_title($prefix = '', $display = true ) {
 245      global $m, $monthnum, $wp_locale, $year;
 246      if ( !empty($monthnum) && !empty($year) ) {
 247          $my_year = $year;
 248          $my_month = $wp_locale->get_month($monthnum);
 249      } elseif ( !empty($m) ) {
 250          $my_year = substr($m, 0, 4);
 251          $my_month = $wp_locale->get_month($m);
 252      }
 253  
 254      if ( !empty($my_month) && $display )
 255          echo $prefix . $my_month . $prefix . $my_year;
 256      else
 257          return $monthnum;
 258  }
 259  
 260  
 261  /* link navigation hack by Orien http://icecode.com/ */
 262  function get_archives_link($url, $text, $format = 'html', $before = '', $after = '') {
 263      $text = wptexturize($text);
 264      $title_text = wp_specialchars($text, 1);
 265  
 266      if ('link' == $format)
 267          return "\t<link rel='archives' title='$title_text' href='$url' />\n";
 268      elseif ('option' == $format)
 269          return "\t<option value='$url'>$before $text $after</option>\n";
 270      elseif ('html' == $format)
 271          return "\t<li>$before<a href='$url' title='$title_text'>$text</a>$after</li>\n";
 272      else // custom
 273          return "\t$before<a href='$url' title='$title_text'>$text</a>$after\n";
 274  }
 275  
 276  
 277  function wp_get_archives($args = '') {
 278      global $wp_locale, $wpdb;
 279  
 280      if ( is_array($args) )
 281          $r = &$args;
 282      else
 283          parse_str($args, $r);
 284  
 285      $defaults = array('type' => 'monthly', 'limit' => '', 'format' => 'html', 'before' => '', 'after' => '', 'show_post_count' => false);
 286      $r = array_merge($defaults, $r);
 287      extract($r);
 288  
 289      if ( '' == $type )
 290          $type = 'monthly';
 291  
 292      if ( '' != $limit ) {
 293          $limit = (int) $limit;
 294          $limit = ' LIMIT '.$limit;
 295      }
 296  
 297      // this is what will separate dates on weekly archive links
 298      $archive_week_separator = '&#8211;';
 299  
 300      // over-ride general date format ? 0 = no: use the date format set in Options, 1 = yes: over-ride
 301      $archive_date_format_over_ride = 0;
 302  
 303      // options for daily archive (only if you over-ride the general date format)
 304      $archive_day_date_format = 'Y/m/d';
 305  
 306      // options for weekly archive (only if you over-ride the general date format)
 307      $archive_week_start_date_format = 'Y/m/d';
 308      $archive_week_end_date_format    = 'Y/m/d';
 309  
 310      if ( !$archive_date_format_over_ride ) {
 311          $archive_day_date_format = get_settings('date_format');
 312          $archive_week_start_date_format = get_settings('date_format');
 313          $archive_week_end_date_format = get_settings('date_format');
 314      }
 315  
 316      $add_hours = intval(get_settings('gmt_offset'));
 317      $add_minutes = intval(60 * (get_settings('gmt_offset') - $add_hours));
 318  
 319      if ( 'monthly' == $type ) {
 320          $arcresults = $wpdb->get_results("SELECT DISTINCT YEAR(post_date) AS `year`, MONTH(post_date) AS `month`, count(ID) as posts FROM $wpdb->posts WHERE post_type = 'post' AND post_status = 'publish' GROUP BY YEAR(post_date), MONTH(post_date) ORDER BY post_date DESC" . $limit);
 321          if ( $arcresults ) {
 322              $afterafter = $after;
 323              foreach ( $arcresults as $arcresult ) {
 324                  $url    = get_month_link($arcresult->year,    $arcresult->month);
 325                  if ( $show_post_count ) {
 326                      $text = sprintf('%s %d', $wp_locale->get_month($arcresult->month), $arcresult->year);
 327                      $after = '&nbsp;('.$arcresult->posts.')' . $afterafter;
 328                  } else {
 329                      $text = sprintf('%s %d', $wp_locale->get_month($arcresult->month), $arcresult->year);
 330                  }
 331                  echo get_archives_link($url, $text, $format, $before, $after);
 332              }
 333          }
 334      } elseif ( 'daily' == $type ) {
 335          $arcresults = $wpdb->get_results("SELECT DISTINCT YEAR(post_date) AS `year`, MONTH(post_date) AS `month`, DAYOFMONTH(post_date) AS `dayofmonth` FROM $wpdb->posts WHERE post_type = 'post' AND post_status = 'publish' ORDER BY post_date DESC" . $limit);
 336          if ( $arcresults ) {
 337              foreach ( $arcresults as $arcresult ) {
 338                  $url    = get_day_link($arcresult->year, $arcresult->month, $arcresult->dayofmonth);
 339                  $date = sprintf("%d-%02d-%02d 00:00:00", $arcresult->year, $arcresult->month, $arcresult->dayofmonth);
 340                  $text = mysql2date($archive_day_date_format, $date);
 341                  echo get_archives_link($url, $text, $format, $before, $after);
 342              }
 343          }
 344      } elseif ( 'weekly' == $type ) {
 345          $start_of_week = get_settings('start_of_week');
 346          $arcresults = $wpdb->get_results("SELECT DISTINCT WEEK(post_date, $start_of_week) AS `week`, YEAR(post_date) AS yr, DATE_FORMAT(post_date, '%Y-%m-%d') AS yyyymmdd FROM $wpdb->posts WHERE post_type = 'post' AND post_status = 'publish' ORDER BY post_date DESC" . $limit);
 347          $arc_w_last = '';
 348          if ( $arcresults ) {
 349                  foreach ( $arcresults as $arcresult ) {
 350                      if ( $arcresult->week != $arc_w_last ) {
 351                          $arc_year = $arcresult->yr;
 352                          $arc_w_last = $arcresult->week;
 353                          $arc_week = get_weekstartend($arcresult->yyyymmdd, get_settings('start_of_week'));
 354                          $arc_week_start = date_i18n($archive_week_start_date_format, $arc_week['start']);
 355                          $arc_week_end = date_i18n($archive_week_end_date_format, $arc_week['end']);
 356                          $url  = sprintf('%s/%s%sm%s%s%sw%s%d', get_settings('home'), '', '?', '=', $arc_year, '&amp;', '=', $arcresult->week);
 357                          $text = $arc_week_start . $archive_week_separator . $arc_week_end;
 358                          echo get_archives_link($url, $text, $format, $before, $after);
 359                      }
 360                  }
 361          }
 362      } elseif ( ( 'postbypost' == $type ) || ('alpha' == $type) ) {
 363          ('alpha' == $type) ? $orderby = "post_title ASC " : $orderby = "post_date DESC ";
 364          $arcresults = $wpdb->get_results("SELECT * FROM $wpdb->posts WHERE post_type = 'post' AND post_status = 'publish' ORDER BY $orderby $limit");
 365          if ( $arcresults ) {
 366              foreach ( $arcresults as $arcresult ) {
 367                  if ( $arcresult->post_date != '0000-00-00 00:00:00' ) {
 368                      $url  = get_permalink($arcresult);
 369                      $arc_title = $arcresult->post_title;
 370                      if ( $arc_title )
 371                          $text = strip_tags($arc_title);
 372                      else
 373                          $text = $arcresult->ID;
 374                      echo get_archives_link($url, $text, $format, $before, $after);
 375                  }
 376              }
 377          }
 378      }
 379  }
 380  
 381  
 382  // Used in get_calendar
 383  function calendar_week_mod($num) {
 384      $base = 7;
 385      return ($num - $base*floor($num/$base));
 386  }
 387  
 388  
 389  function get_calendar($initial = true) {
 390      global $wpdb, $m, $monthnum, $year, $timedifference, $wp_locale, $posts;
 391  
 392      // Quick check. If we have no posts at all, abort!
 393      if ( !$posts ) {
 394          $gotsome = $wpdb->get_var("SELECT ID from $wpdb->posts WHERE post_type = 'post' AND post_status = 'publish' ORDER BY post_date DESC LIMIT 1");
 395          if ( !$gotsome )
 396              return;
 397      }
 398  
 399      if ( isset($_GET['w']) )
 400          $w = ''.intval($_GET['w']);
 401  
 402      // week_begins = 0 stands for Sunday
 403      $week_begins = intval(get_settings('start_of_week'));
 404      $add_hours = intval(get_settings('gmt_offset'));
 405      $add_minutes = intval(60 * (get_settings('gmt_offset') - $add_hours));
 406  
 407      // Let's figure out when we are
 408      if ( !empty($monthnum) && !empty($year) ) {
 409          $thismonth = ''.zeroise(intval($monthnum), 2);
 410          $thisyear = ''.intval($year);
 411      } elseif ( !empty($w) ) {
 412          // We need to get the month from MySQL
 413          $thisyear = ''.intval(substr($m, 0, 4));
 414          $d = (($w - 1) * 7) + 6; //it seems MySQL's weeks disagree with PHP's
 415          $thismonth = $wpdb->get_var("SELECT DATE_FORMAT((DATE_ADD('$thisyear}0101', INTERVAL $d DAY) ), '%m')");
 416      } elseif ( !empty($m) ) {
 417          $calendar = substr($m, 0, 6);
 418          $thisyear = ''.intval(substr($m, 0, 4));
 419          if ( strlen($m) < 6 )
 420                  $thismonth = '01';
 421          else
 422                  $thismonth = ''.zeroise(intval(substr($m, 4, 2)), 2);
 423      } else {
 424          $thisyear = gmdate('Y', current_time('timestamp') + get_settings('gmt_offset') * 3600);
 425          $thismonth = gmdate('m', current_time('timestamp') + get_settings('gmt_offset') * 3600);
 426      }
 427  
 428      $unixmonth = mktime(0, 0 , 0, $thismonth, 1, $thisyear);
 429  
 430      // Get the next and previous month and year with at least one post
 431      $previous = $wpdb->get_row("SELECT DISTINCT MONTH(post_date) AS month, YEAR(post_date) AS year
 432          FROM $wpdb->posts
 433          WHERE post_date < '$thisyear-$thismonth-01'
 434          AND post_type = 'post' AND post_status = 'publish'
 435              ORDER BY post_date DESC
 436              LIMIT 1");
 437      $next = $wpdb->get_row("SELECT    DISTINCT MONTH(post_date) AS month, YEAR(post_date) AS year
 438          FROM $wpdb->posts
 439          WHERE post_date >    '$thisyear-$thismonth-01'
 440          AND MONTH( post_date ) != MONTH( '$thisyear-$thismonth-01' )
 441          AND post_type = 'post' AND post_status = 'publish' 
 442              ORDER    BY post_date ASC
 443              LIMIT 1");
 444  
 445      echo '<table id="wp-calendar">
 446      <caption>' . $wp_locale->get_month($thismonth) . ' ' . date('Y', $unixmonth) . '</caption>
 447      <thead>
 448      <tr>';
 449  
 450      $myweek = array();
 451  
 452      for ( $wdcount=0; $wdcount<=6; $wdcount++ ) {
 453          $myweek[] = $wp_locale->get_weekday(($wdcount+$week_begins)%7);
 454      }
 455  
 456      foreach ( $myweek as $wd ) {
 457          $day_name = (true == $initial) ? $wp_locale->get_weekday_initial($wd) : $wp_locale->get_weekday_abbrev($wd);
 458          echo "\n\t\t<th abbr=\"$wd\" scope=\"col\" title=\"$wd\">$day_name</th>";
 459      }
 460  
 461      echo '
 462      </tr>
 463      </thead>
 464  
 465      <tfoot>
 466      <tr>';
 467  
 468      if ( $previous ) {
 469          echo "\n\t\t".'<td abbr="' . $wp_locale->get_month($previous->month) . '" colspan="3" id="prev"><a href="' .
 470          get_month_link($previous->year, $previous->month) . '" title="' . sprintf(__('View posts for %1$s %2$s'), $wp_locale->get_month($previous->month),
 471              date('Y', mktime(0, 0 , 0, $previous->month, 1, $previous->year))) . '">&laquo; ' . $wp_locale->get_month_abbrev($wp_locale->get_month($previous->month)) . '</a></td>';
 472      } else {
 473          echo "\n\t\t".'<td colspan="3" id="prev" class="pad">&nbsp;</td>';
 474      }
 475  
 476      echo "\n\t\t".'<td class="pad">&nbsp;</td>';
 477  
 478      if ( $next ) {
 479          echo "\n\t\t".'<td abbr="' . $wp_locale->get_month($next->month) . '" colspan="3" id="next"><a href="' .
 480          get_month_link($next->year, $next->month) . '" title="' . sprintf(__('View posts for %1$s %2$s'), $wp_locale->get_month($next->month),
 481              date('Y', mktime(0, 0 , 0, $next->month, 1, $next->year))) . '">' . $wp_locale->get_month_abbrev($wp_locale->get_month($next->month)) . ' &raquo;</a></td>';
 482      } else {
 483          echo "\n\t\t".'<td colspan="3" id="next" class="pad">&nbsp;</td>';
 484      }
 485  
 486      echo '
 487      </tr>
 488      </tfoot>
 489  
 490      <tbody>
 491      <tr>';
 492  
 493      // Get days with posts
 494      $dayswithposts = $wpdb->get_results("SELECT DISTINCT DAYOFMONTH(post_date)
 495          FROM $wpdb->posts WHERE MONTH(post_date) = '$thismonth'
 496          AND YEAR(post_date) = '$thisyear'
 497          AND post_type = 'post' AND post_status = 'publish'
 498          AND post_date < '" . current_time('mysql') . '\'', ARRAY_N);
 499      if ( $dayswithposts ) {
 500          foreach ( $dayswithposts as $daywith ) {
 501              $daywithpost[] = $daywith[0];
 502          }
 503      } else {
 504          $daywithpost = array();
 505      }
 506  
 507  
 508  
 509      if ( strstr($_SERVER['HTTP_USER_AGENT'], 'MSIE') || strstr(strtolower($_SERVER['HTTP_USER_AGENT']), 'camino') || strstr(strtolower($_SERVER['HTTP_USER_AGENT']), 'safari') )
 510          $ak_title_separator = "\n";
 511      else
 512          $ak_title_separator = ', ';
 513  
 514      $ak_titles_for_day = array();
 515      $ak_post_titles = $wpdb->get_results("SELECT post_title, DAYOFMONTH(post_date) as dom "
 516          ."FROM $wpdb->posts "
 517          ."WHERE YEAR(post_date) = '$thisyear' "
 518          ."AND MONTH(post_date) = '$thismonth' "
 519          ."AND post_date < '".current_time('mysql')."' "
 520          ."AND post_type = 'post' AND post_status = 'publish'"
 521      );
 522      if ( $ak_post_titles ) {
 523          foreach ( $ak_post_titles as $ak_post_title ) {
 524                  if ( empty($ak_titles_for_day['day_'.$ak_post_title->dom]) )
 525                      $ak_titles_for_day['day_'.$ak_post_title->dom] = '';
 526                  if ( empty($ak_titles_for_day["$ak_post_title->dom"]) ) // first one
 527                      $ak_titles_for_day["$ak_post_title->dom"] = str_replace('"', '&quot;', wptexturize($ak_post_title->post_title));
 528                  else
 529                      $ak_titles_for_day["$ak_post_title->dom"] .= $ak_title_separator . str_replace('"', '&quot;', wptexturize($ak_post_title->post_title));
 530          }
 531      }
 532  
 533  
 534      // See how much we should pad in the beginning
 535      $pad = calendar_week_mod(date('w', $unixmonth)-$week_begins);
 536      if ( 0 != $pad )
 537          echo "\n\t\t".'<td colspan="'.$pad.'" class="pad">&nbsp;</td>';
 538  
 539      $daysinmonth = intval(date('t', $unixmonth));
 540      for ( $day = 1; $day <= $daysinmonth; ++$day ) {
 541          if ( isset($newrow) && $newrow )
 542              echo "\n\t</tr>\n\t<tr>\n\t\t";
 543          $newrow = false;
 544  
 545          if ( $day == gmdate('j', (time() + (get_settings('gmt_offset') * 3600))) && $thismonth == gmdate('m', time()+(get_settings('gmt_offset') * 3600)) && $thisyear == gmdate('Y', time()+(get_settings('gmt_offset') * 3600)) )
 546              echo '<td id="today">';
 547          else
 548              echo '<td>';
 549  
 550          if ( in_array($day, $daywithpost) ) // any posts today?
 551                  echo '<a href="' . get_day_link($thisyear, $thismonth, $day) . "\" title=\"$ak_titles_for_day[$day]\">$day</a>";
 552          else
 553              echo $day;
 554          echo '</td>';
 555  
 556          if ( 6 == calendar_week_mod(date('w', mktime(0, 0 , 0, $thismonth, $day, $thisyear))-$week_begins) )
 557              $newrow = true;
 558      }
 559  
 560      $pad = 7 - calendar_week_mod(date('w', mktime(0, 0 , 0, $thismonth, $day, $thisyear))-$week_begins);
 561      if ( $pad != 0 && $pad != 7 )
 562          echo "\n\t\t".'<td class="pad" colspan="'.$pad.'">&nbsp;</td>';
 563  
 564      echo "\n\t</tr>\n\t</tbody>\n\t</table>";
 565  }
 566  
 567  
 568  function allowed_tags() {
 569      global $allowedtags;
 570      $allowed = '';
 571      foreach ( $allowedtags as $tag => $attributes ) {
 572          $allowed .= '<'.$tag;
 573          if ( 0 < count($attributes) ) {
 574              foreach ( $attributes as $attribute => $limits ) {
 575                  $allowed .= ' '.$attribute.'=""';
 576              }
 577          }
 578          $allowed .= '> ';
 579      }
 580      return htmlentities($allowed);
 581  }
 582  
 583  
 584  /***** Date/Time tags *****/
 585  
 586  
 587  function the_date_xml() {
 588      global $post;
 589      echo mysql2date('Y-m-d', $post->post_date);
 590      //echo ""+$post->post_date;
 591  }
 592  
 593  
 594  function the_date($d='', $before='', $after='', $echo = true) {
 595      global $id, $post, $day, $previousday, $newday;
 596      $the_date = '';
 597      if ( $day != $previousday ) {
 598          $the_date .= $before;
 599          if ( $d=='' )
 600              $the_date .= mysql2date(get_settings('date_format'), $post->post_date);
 601          else
 602              $the_date .= mysql2date($d, $post->post_date);
 603          $the_date .= $after;
 604          $previousday = $day;
 605      }
 606      $the_date = apply_filters('the_date', $the_date, $d, $before, $after);
 607      if ( $echo )
 608          echo $the_date;
 609      else
 610          return $the_date;
 611  }
 612  
 613  
 614  function the_time( $d = '' ) {
 615      echo apply_filters('the_time', get_the_time( $d ), $d);
 616  }
 617  
 618  
 619  function get_the_time( $d = '' ) {
 620      if ( '' == $d )
 621          $the_time = get_post_time(get_settings('time_format'));
 622      else
 623          $the_time = get_post_time($d);
 624      return apply_filters('get_the_time', $the_time, $d);
 625  }
 626  
 627  
 628  function get_post_time( $d = 'U', $gmt = false ) { // returns timestamp
 629      global $post;
 630      if ( $gmt )
 631          $time = $post->post_date_gmt;
 632      else
 633          $time = $post->post_date;
 634  
 635      $time = mysql2date($d, $time);
 636      return apply_filters('get_the_time', $time, $d, $gmt);
 637  }
 638  
 639  
 640  function the_modified_time($d = '') {
 641      echo apply_filters('the_modified_time', get_the_modified_time($d), $d);
 642  }
 643  
 644  
 645  function get_the_modified_time($d = '') {
 646      if ( '' == $d )
 647          $the_time = get_post_modified_time(get_settings('time_format'));
 648      else
 649          $the_time = get_post_modified_time($d);
 650      return apply_filters('get_the_modified_time', $the_time, $d);
 651  }
 652  
 653  
 654  function get_post_modified_time( $d = 'U', $gmt = false ) { // returns timestamp
 655      global $post;
 656  
 657      if ( $gmt )
 658          $time = $post->post_modified_gmt;
 659      else
 660          $time = $post->post_modified;
 661      $time = mysql2date($d, $time);
 662  
 663      return apply_filters('get_the_modified_time', $time, $d, $gmt);
 664  }
 665  
 666  
 667  function the_weekday() {
 668      global $wp_locale, $id, $post;
 669      $the_weekday = $wp_locale->get_weekday(mysql2date('w', $post->post_date));
 670      $the_weekday = apply_filters('the_weekday', $the_weekday);
 671      echo $the_weekday;
 672  }
 673  
 674  
 675  function the_weekday_date($before='',$after='') {
 676      global $wp_locale, $id, $post, $day, $previousweekday;
 677      $the_weekday_date = '';
 678      if ( $day != $previousweekday ) {
 679          $the_weekday_date .= $before;
 680          $the_weekday_date .= $wp_locale->get_weekday(mysql2date('w', $post->post_date));
 681          $the_weekday_date .= $after;
 682          $previousweekday = $day;
 683      }
 684      $the_weekday_date = apply_filters('the_weekday_date', $the_weekday_date, $before, $after);
 685      echo $the_weekday_date;
 686  }
 687  
 688  function wp_head() {
 689      do_action('wp_head');
 690  }
 691  
 692  function wp_footer() {
 693      do_action('wp_footer');
 694  }
 695  
 696  function rsd_link() {
 697      echo '    <link rel="EditURI" type="application/rsd+xml" title="RSD" href="' . get_bloginfo('wpurl') . "/xmlrpc.php?rsd\" />\n";
 698  }
 699  
 700  function noindex() {
 701      // If the blog is not public, tell robots to go away.
 702      if ( '0' == get_option('blog_public') )
 703          echo "<meta name='robots' content='noindex,nofollow' />\n";
 704  }
 705  
 706  /**
 707   * Places a textarea according to the current user's preferences, filled with $content.
 708   * Also places a script block that enables tabbing between Title and Content.
 709   *
 710   * @param string Editor contents
 711   * @param string (optional) Previous form field's ID (for tabbing support)
 712   */
 713  function the_editor($content, $id = 'content', $prev_id = 'title') {
 714      $rows = get_settings('default_post_edit_rows');
 715      if (($rows < 3) || ($rows > 100))
 716          $rows = 12;
 717  
 718      $rows = "rows='$rows'";
 719  
 720      the_quicktags();
 721  
 722      if ( user_can_richedit() )
 723          add_filter('the_editor_content', 'wp_richedit_pre');
 724  
 725      $the_editor = apply_filters('the_editor', "<div><textarea class='mceEditor' $rows cols='40' name='$id' tabindex='2' id='$id'>%s</textarea></div>\n");
 726      $the_editor_content = apply_filters('the_editor_content', $content);
 727  
 728      printf($the_editor, $the_editor_content);
 729  
 730      ?>
 731      <script type="text/javascript">
 732      //<!--
 733      edCanvas = document.getElementById('<?php echo $id; ?>');
 734      <?php if ( user_can_richedit() ) : ?>
 735      // This code is meant to allow tabbing from Title to Post (TinyMCE).
 736      if ( tinyMCE.isMSIE )
 737          document.getElementById('<?php echo $prev_id; ?>').onkeydown = function (e)
 738              {
 739                  e = e ? e : window.event;
 740                  if (e.keyCode == 9 && !e.shiftKey && !e.controlKey && !e.altKey) {
 741                      var i = tinyMCE.selectedInstance;
 742                      if(typeof i ==  'undefined')
 743                          return true;
 744                                      tinyMCE.execCommand("mceStartTyping");
 745                      this.blur();
 746                      i.contentWindow.focus();
 747                      e.returnValue = false;
 748                      return false;
 749                  }
 750              }
 751      else
 752          document.getElementById('<?php echo $prev_id; ?>').onkeypress = function (e)
 753              {
 754                  e = e ? e : window.event;
 755                  if (e.keyCode == 9 && !e.shiftKey && !e.controlKey && !e.altKey) {
 756                      var i = tinyMCE.selectedInstance;
 757                      if(typeof i ==  'undefined')
 758                          return true;
 759                                      tinyMCE.execCommand("mceStartTyping");
 760                      this.blur();
 761                      i.contentWindow.focus();
 762                      e.returnValue = false;
 763                      return false;
 764                  }
 765              }
 766      <?php endif; ?>
 767      //-->
 768      </script>
 769      <?php
 770  }
 771  
 772  ?>

Your comment here...

Name: Location:
Comments:


List: Classes | Functions | Variables | Constants | Tables

Generated: Sat Jul 15 11:57:04 2006 Courtesy of Taragana