1

我有一个最近发布的字幕代码,我想更改类别 base.suppose 我选择特色类别。我想在此字幕代码中显示最近的 10 个特色类别帖子标题...。

我最近的邮政编码显示如下...

<marquee width="820px" style="font-size: 12pt; height:32px;padding-bottom: 10px;" behavior="scroll" direction="left" bgcolor="#DEE9FB" scrollamount="2" scrolldelay="60" onmouseover="this.stop()" onmouseout="this.start()"><?php $latest = get_posts('numberposts='.$bnews_options["BnEnumber"].'&offset='.$bnews_options["‌​BnPostSkip"].'&cat='.$bnews_options["BnCatID"]); foreach( $latest as $post ): ?
&nbsp;&nbsp;<img src="http://hostshine.net/wp-content/uploads/2013/02/dot.png">&nbsp;&nbsp;</font><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a><?php endforeach; ?></marquee>

我可以更改哪些代码,因为它是基于类别的吗?

4

1 回答 1

0

您可以使用此代码。但请记住,我不支持您使用字幕代码..

<marquee width="820px" style="font-size: 12pt; height:32px;padding-bottom: 10px;" behavior="scroll" direction="left" bgcolor="#DEE9FB" scrollamount="2" scrolldelay="60" onmouseover="this.stop()" onmouseout="this.start()"><?php query_posts('category_name=wordpress&showposts=5'); ?><?php while (have_posts()) : the_post(); ?><li><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></li><?php endwhile; ?></marquee>
于 2013-06-13T17:39:18.700 回答