the7文章列表简要内容添加链接方法

网站建设

网站建设

wordpress建站时用the7主题,文章列表的简要说明要加上超链接的方法是

一:

文件所在的位置

/template-parts/blog/masonry/blog-masonry-post.php

网站建设

 

 

 

<?php echo presscore_get_posted_on();

echo ‘<div class=”entry-excerpt”>’;

echo ‘<a href=”‘;

echo the_permalink();

echo ‘”>’;

if ( $config->get( ‘show_excerpts’ ) ) { presscore_the_excerpt(); }

echo ‘</a></div>’;

 

 

网站建设

网站建设

 

 

<?php

if ( $config->get( ‘show_excerpts’ ) && isset( $post_excerpt ) ) {

echo ‘<div class=”entry-excerpt”>’;

echo ‘<a href=”‘;

echo the_permalink();

echo ‘”>’;

echo $post_excerpt;

echo ‘</a></div>’; }

?>

原创文章,作者:ItWorker,如若转载,请注明出处:https://blog.ytso.com/260143.html

(0)
上一篇 2022年5月23日
下一篇 2022年5月23日

相关推荐

发表回复

登录后才能评论