函数get_day_link()在当天没有新闻时给出404错误

时间:2013-08-03 17:12:55

标签: wordpress wordpress-theming

我的网站由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>

1 个答案:

答案 0 :(得分: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>
?>

今天发帖子