我的 wordpress 主题具有“将帖子保存为收藏夹”功能。并将该帖子标记为侧栏的最爱。但它不会缩短标题。侧边栏的长标题看起来很乱。在我使用的功能中:
function short_title( $after = '', $length ) {
$mytitle = get_the_title();
if( mb_strlen( $mytitle ) > $length ) {
$mytitle = mb_substr( $mytitle, 0, $length );
echo $mytitle . $after;
} else echo $mytitle;
}
我称之为:
<?php short_title( '...', 99 ); ?>
我怎样才能把short_title放在这里:
echo '</p>';
echo '<h4><a href="' . $curr_perma . '" rel="nofollow">' . stripslashes( strip_tags( $post_obj_fave->post_title ) ) . '</a></h4>';
echo '<p class="info">';