获取WordPress文章的第一个链接

有一条长长的石头,外形像一条龙,石头上长满斑斑点点的东西,像龙身上的鳞。人生就是一场旅行,不在乎目的地,在乎的应该是沿途的风景以及看风景的心情。春色满园关不住,一枝红杏出墙来。

WordPress文章格式中有一种是链接,用来快速分享一个链接,如果我们可以将文章的这个链接自动链接到这篇文章的标题中,远比在文章内容中直接显示这个链接来的完美。将下面的代码添加到当前主题的 functions.php 中:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
function get_content_link( $content = false, $echo = false )
{
    if ( $content === false )
        $content = get_the_content(); 

    $content = preg_match_all( '/hrefs*=s*["']([^"']+)/', $content, $links );
    $content = $links[1][0];

    if ( empty($content) ) {
    	$content = false;
    }

    return $content;
}

function get_content_link( $content = false, $echo = false ) { if ( $content === false ) $content = get_the_content(); $content = preg_match_all( '/hrefs*=s*["']([^"']+)/', $content, $links ); $content = $links[1][0]; if ( empty($content) ) { $content = false; } return $content; }

然后你可以类似下面的代码来为标题添加这个链接:

1
2
3
<h2><a rel="nofollow noopener noreferrer" href="<?php echo get_content_link( get_the_content() ); ?>"><?php the_title(); ?></a></h2>
<p><?php the_excerpt(); ?></p>
<a rel="nofollow noopener noreferrer" href="<?php the_permalink(); ?>">Comment »</a>

<h2><a rel="nofollow noopener noreferrer" href="<?php echo get_content_link( get_the_content() ); ?>"><?php the_title(); ?></a></h2> <p><?php the_excerpt(); ?></p> <a rel="nofollow noopener noreferrer" href="<?php the_permalink(); ?>">Comment »</a>

参考资料:http://wp-snippets.com/get-the-first-link-in-post/

到此这篇关于获取WordPress文章的第一个链接就介绍到这了。避不开,那么改变它。更多相关获取WordPress文章的第一个链接内容请查看相关栏目,小编编辑不易,再次感谢大家的支持!

您可能有感兴趣的文章
WordPress站点Gravatar头像前后台不显示的如何解决办法

WordPress做公司官网好吗?会不会显得档次很低?

WordPress主题需要支持https吗?WordPress站点如何如何实现https?

WordPress站点的页面/标签/分类URL地址如何添加.html?

WordPress站点更换了域名后数据库应该如何操作替换新旧域名?