如何在每个最近发布的帖子后添加ASCII符号

时间:2013-12-23 作者:Eric

如何在每个最近的帖子列表项后添加ASCII码?

<?php
    $args = array( \'numberposts\' => \'2\' );
    $recent_posts = wp_get_recent_posts( $args );
    foreach( $recent_posts as $recent ){
        echo \'<li><a href="\' . get_permalink($recent["ID"]) . \'" title="\'.esc_attr($recent["post_title"]).\'" >\' .   $recent["post_title"].\'</a></li> \';}    
?>
因此输出将是

最近的帖子1>
最近的帖子2>

编辑1:

如果我把&agt;之后</a>, 该符号将是超链接的一部分。我只是希望它远离链接。

<ul>
<?php
    $args = array( \'numberposts\' => \'2\' );
    $recent_posts = wp_get_recent_posts( $args );
    foreach( $recent_posts as $recent ){
        echo \'<li><a href="\' . get_permalink($recent["ID"]) . \'" title="\'.esc_attr($recent["post_title"]).\'" >\' .   $recent["post_title"].\'</a>&gt;</li> \';}    
?>
</ul>

1 个回复
SO网友:tfrommen

你是在说这样的话吗:

<?php
$args = array(
    \'numberposts\' => 2,
);
$recent_posts = wp_get_recent_posts($args);
foreach ($recent_posts as $recent) {
    ?>
    <li>
        <a href="<?php echo get_permalink($recent[\'ID\']); ?>" title="<?php echo esc_attr($recent["post_title"]); ?>">
            <?php echo $recent["post_title"]; ?>
        </a> &gt;
    </li>
    <?php
}
?>
如果是,问题是什么?

结束

相关推荐

尝试避免包含wp-load.php

我正在使用一个插件,试图将人力资源系统与WordPress连接起来。人力资源系统上有一个XML API,所以我编写了插件来获取数据并将其放入特定于我的插件的WordPress数据库表中。这一切都是通过内置的AJAX等来完成的,但有人要求该人员能够安排一项任务,这样就不会在每次访问网站时查询人力资源系统(职位列表需要显示在网站首页)。然后问题就变成了同步。这是一个IIS环境,因此他们希望使用计划的任务同步站点。我解释了WordPress计划任务API,但他们更喜欢通过自己的基础设施手动同步。我如何创建代码(