我用下面的代碼進行修邊的標題,並顯示recent posts section我blog:PHP函數SUBSTR修剪問題
<?php global $post;
$releaseDate = get_post_meta($post->ID, "gosterim_tarihi", true);
foreach($images as $image) {
$title = get_the_title();
if (strlen($title) > 20) { $title = substr($title, 0, 20) . '…'; }
$attachmentimage=wp_get_attachment_image_src($image->ID, 'large');
echo '<li><a href="'. get_permalink() .'" title="' . $title . '"><img src="'. $attachmentimage[0] .'" alt="'. $title .'" />'. $title .'<span>Gösterim Tarihi: ' . $releaseDate . '</span></a></li>';
} ?>
但也有HTML字符實體問題。當我使用substr
函數修剪標題時,substr
函數也修剪HTML字符實體。
所以我試圖使用html_entity_decode
函數,但我不能做得很好。
任何人都可以幫到我嗎?
不,它不起作用。我認爲'strip_tags'功能剝離了HTML標籤。但我想剝離HTML字符實體(http://htmlhelp.com/reference/html40/entities/)。 – fatihturan