Advertisement
Digitalraindrops

Custom More content.php

May 3rd, 2011
320
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.68 KB | None | 0 0
  1. <?php
  2. /* custom Excerpt More Text */
  3. $excerpt = array('more_tag' => __('[...]', THEME_NS) );
  4. ?>
  5. <?php
  6.     global $post;
  7.     theme_post_wrapper(
  8.         array(
  9.                 'id' => theme_get_post_id(),
  10.                 'class' => theme_get_post_class(),
  11.                 'thumbnail' => theme_get_post_thumbnail(),
  12.                 'title' => '<a href="' . get_permalink( $post->ID ) . '" rel="bookmark" title="' . get_the_title() . '">' . get_the_title() . '</a>',
  13.                 'before' => theme_get_metadata_icons( '', 'header' ),
  14.                 'content' => theme_get_excerpt( $excerpt ),
  15.                 'after' => theme_get_metadata_icons( '', 'footer' )
  16.         )
  17.     );
  18. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement