我正在我的网站上工作,我想删除小部件中的页面链接,因此会显示标题和内容,但无法访问该页面。 有人可以帮忙吗?谢谢。
<?php
echo '<a href="'.esc_url(get_permalink()).'" class="all-link">';
the_title();
echo '</a>';
?>
答案 0 :(得分:0)
好吧,只需擦除a
标记及其所有属性,再加上echo
the_content()`,就不需要the_title(); or
了,因为那些WP函数已经回显了那些:
<?php
the_title();
?>