为图片添加超链接将此代码段添加到functions.php文件中:文章源自知更鸟-https://zmingcx.com/add-a-hyperlink-to-the-picture.html
function link_all_my_content( $content ) { $matches = array(); $nummatches = preg_match("/src=['|\"](.*)['|\"]/", $content, $matches); return "<a href='" . $matches[1] . "'>$content</a>"; } add_filter( 'the_content', 'link_all_my_content' );
文章源自知更鸟-https://zmingcx.com/add-a-hyperlink-to-the-picture.html
文章源自知更鸟-https://zmingcx.com/add-a-hyperlink-to-the-picture.html
文章源自知更鸟-https://zmingcx.com/add-a-hyperlink-to-the-picture.html

版权声明
本站原创文章转载请注明文章出处及链接,谢谢合作!
评论