gpt4 book ai didi

php - 我如何在 wordpress 中实现估计阅读时间功能?

转载 作者:可可西里 更新时间:2023-11-01 00:43:52 24 4
gpt4 key购买 nike

<分区>

我正在尝试将估计的阅读时间整合到一个 wordpress 主题中,但我似乎无法让它发挥作用。我从这里拿了代码 http://wptavern.com/estimated-time-to-read-this-post-eternity .我将其粘贴到 functions.php 中

function bm_estimated_reading_time() {

$post = get_post();

$words = str_word_count( strip_tags( $post->post_content ) );
$minutes = floor( $words / 120 );
$seconds = floor( $words % 120 / ( 120 / 60 ) );

if ( 1 < = $minutes ) {
$estimated_time = $minutes . ' minute' . ($minutes == 1 ? '' : 's') . ', ' . $seconds . ' second' . ($seconds == 1 ? '' : 's');
} else {
$estimated_time = $seconds . ' second' . ($seconds == 1 ? '' : 's');
}

return $estimated_time;

}

然后调用它

<p class="ert"><?php bm_estimated_reading_time() ?></p> 

在 content-single.php 中,作者链接之后没有显示任何内容。如果我检查 chrome 中的帖子,我可以看到该段落,但它是空的。我做错了什么,或者我还应该做什么?

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com