我的技巧是不移动按钮,而是创建另一个按钮。
<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>