如何更改“阅读更多”按钮的位置

时间:2017-03-03 作者:Sage Harpuia

基本上是标题所说的。我是wordpress的新手,我正在一个网站上工作,我需要将“阅读更多”按钮的位置移动到post简历中的另一个div,但我找不到哪个div。php文件负责这一点。

2 个回复
SO网友:Aftab

您需要首先了解WP主题层次结构是如何工作的,然后只有您才能找到需要定义的文件。

下面是了解WP主题层次结构工作原理的URL。

https://developer.wordpress.org/themes/basics/template-hierarchy/

SO网友:Komu Stephen

我的技巧是不移动按钮,而是创建另一个按钮。

    <style>
/*remove the default button*/
    article p a{
    display: none
    }
    </style>
<!---create a new button in the loop.php file with a link --->
<a href="<?php the_permalink()?>">
                <button class="btn btn-outline-info">
                    Read more
                </button>
            </a>

相关推荐

无法在模板函数.php中使用IS_HOME

我试图在标题中加载一个滑块,但只在主页上加载。如果有帮助的话,我正在使用Ultralight模板。我正在尝试(在template functions.php中)执行以下操作:<?php if ( is_page( \'home\' ) ) : ?> dynamic_sidebar( \'Homepage Widget\' ); <?php endif; ?> 但这行不通。现在,通过快速的google,我似乎需要将请