在Wordpress中删除get_permalink

时间:2019-11-28 22:06:30

标签: wordpress

我正在我的网站上工作,我想删除小部件中的页面链接,因此会显示标题和内容,但无法访问该页面。 有人可以帮忙吗?谢谢。

<?php
   echo '<a href="'.esc_url(get_permalink()).'" class="all-link">';
   the_title();
   echo '</a>';
    ?>

1 个答案:

答案 0 :(得分:0)

好吧,只需擦除a标记及其所有属性,再加上echo the_content()`,就不需要the_title(); or了,因为那些WP函数已经回显了那些:

<?php
   the_title();
?>