wordpress如何获取日志中的第一个链接(代码介绍)

2024年10月12日 建站教程

一般情况下日志中会有很多链接,那么wordpress如何获取日志中的第一个链接?下面web建站小编给大家详细介绍一下具体方法!

在当前主题的functions.php文件中新增以下代码:

function get_content_first_link( $content = false, $echo = false ){
  if ( $content === false )
  $content = get_the_content(); 
  
  preg_match_all('/<a.*?href=['"](.*?)['"].*?>/i', $content, $links);
  
  if($links){
  	return $links[1][0];
  }else {
  	return false;
  }
}

wordpress调用方法:

<h2><a href="<?php echo get_content_link(get_the_content()); ?>"><?php the_title(); ?></a></h2>

本文链接:http://so.lmcjl.com/news/15223/

展开阅读全文
相关内容