一些Wordpress PHP中的CSS样式?

时间:2012-03-05 10:09:58

标签: php wordpress

我有一个我想要使用的wordpress代码,但我试图给它一些样式。

<?php global $post;
$current_post = $post; // remember the current post

for($i = 1; $i <= 1; $i++):
  $post = get_previous_post(); // this uses $post->ID
  setup_postdata($post);

  // do your stuff here    
  the_excerpt();

endfor;
$post = $current_post; // restore ?>

//在这里做你的东西,我需要在the_excerpt中添加永久链接和CSS样式。目前the_excerpt在我的博客上提取缩略图。

这是我用来获取2个随机缩略图的代码,希望这能让您了解我对上述代码的要求。

<?php
$args = array( 'numberposts' => 2, 'orderby' => 'rand' );
$rand_posts = get_posts( $args );
foreach( $rand_posts as $post ) : ?>
<div class="postgallery" id="post-<?php the_ID(); ?>">
<a class="title" href="<?php the_permalink() ?>" rel="bookmark"><?php the_excerpt(); ?>
<?php
$thetitle = $post->post_title; /* or you can use get_the_title() */
$getlength = strlen($thetitle);
$thelength = 35;
echo substr($thetitle, 0, $thelength);
if ($getlength > $thelength) echo "...";
?>
</a><?php if ($options['tags']) : ?><?php endif; ?> 
</div>
<?php endforeach; ?>

1 个答案:

答案 0 :(得分:0)

将the_excerpt()包含在一组带有id或class的div标签中,这将为您提供通过样式表设置摘录内容所需的钩子。