添加div阅读更多wordpress

时间:2013-04-03 21:17:35

标签: php css wordpress

好的,所以我试图添加一个div阅读更多按钮,但它不起作用,我不知道该怎么做。

这是我正在尝试使用的代码。

<?php the_content('<a href="<?php the_permalink() ?>" title="<?php printf( __('Permalink to %s', 'wpbx'), the_title_attribute('echo=0') ) ?>" rel="bookmark"><div class="readmore"></div></a>') ?>

这是css

.readmore{
  width:136px;
  height:34px;
  background: url('http://ericavain.com/wp-content/uploads/2013/04/READ1.png') no-repeat;
}
.readmore:hover{
  width:136px;
  height:34px;
  background: url('http://ericavain.com/wp-content/uploads/2013/04/read2.png') no-repeat;
}

我如何完成这项工作

1 个答案:

答案 0 :(得分:0)

也许您正试图在Pages上使用“阅读更多”?如果是这种情况,请尝试在页面中添加以下内容:

<?php  // let's enable more link on pages...
        global $more;
        $more = 0;
        ?>
            <?php the_content(); ?>