一般情况下日志中会有很多链接,那么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>
标签: wordpress代码, wordpress获取日志
上面是“wordpress如何获取日志中的第一个链接(代码介绍)”的全面内容,想了解更多关于 wordpress 内容,请继续关注web建站教程。
当前网址:https://m.ipkd.cn/webs_3759.html
声明:本站提供的所有资源部分来自互联网,如果有侵犯您的版权或其他权益,请发送到邮箱:admin@ipkd.cn,我们会在看到邮件的第一时间内为您处理!