如何在每个最近的帖子列表项后添加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>></li> \';}
?>
</ul>