0

我的网站由 wordpress 提供支持,主页上有一个按钮,可以将访问者重定向到每日新闻,但是当我的网站当天没有新闻时,我的网站给出了一个未找到的错误页面,我确实只想在有新闻时才显示这个按钮当天,有人知道如何解决这个问题,请检查我的代码如下:

<?php if (of_get_option('pm_date') ) { //Get current date if enabled ?>
    <div class="date">
        <a href="<?php echo get_day_link('', '', ''); ?>" rel="tooltip" data-original-title="<?php _e('Veja as Notícias de Hoje!','')?>" data-placement="left"><?php echo date_i18n('j F Y', time()); ?></a>
            <span class="corner custom-color"></span>    
    </div>
4

1 回答 1

0

get_day_link 函数中缺少参数,

你可以这样尝试:

<?php 
$archive_year  = get_the_time('Y'); 
$archive_month = get_the_time('m'); 
$archive_day   = get_the_time('d'); 
?>
<a href="<?php echo get_day_link( $archive_year, $archive_month, $archive_day); ?>">This day's posts</a>
?>

今天得到一个帖子

于 2013-08-03T17:20:46.280 回答