實際上,我嚇壞了,因爲這是我敢肯定是那麼容易,但我不知設法找不到解決...回線WordPress的PHP(閱讀更多)
我目前工作一個WordPress的網站,我有一個頁面,包括我所有的最近的帖子,文章顯示不完全,只有幾個第一個字,我有一個「讀更多」的鏈接,這是在wp-content/my_theme/inc /template-tags.php,這裏是代碼:
/**
* Add the read more link to excerpts, except for image attachment pages
*/
if (! function_exists('xsbf_get_the_excerpt')) :
add_filter('get_the_excerpt', 'xsbf_get_the_excerpt');
function xsbf_get_the_excerpt($excerpt) {
if (! is_attachment()) {
if ($excerpt) {
$excerpt .= '… ';
} ?>
<?php $excerpt .= '<a class="read-more" href="'. get_permalink(get_the_ID()) . '">' . __('Read More', 'flat-bootstrap') . '</a>';
}
return $excerpt;
}
endif; // end ! function_exists
,基本上我的問題是,我想我的「更多」返回線^^儘可能簡單,但耶是因爲你可以猜測我已經嘗試\n
& <br>
,我猜IDK把它們放在哪裏。
不介意開<?php
&收盤?>
我的問題有什麼關係呢
「return to line ^^」是什麼意思?根據你提到的嘗試「\ n」和一個實際的換行符,你只是想添加一個換行符(HTML的'
')? – RToyo