WordPress中文章和页面的标题(h1 - h6)大写

ugmeyewa  于 2022-12-29  发布在  WordPress
关注(0)|答案(1)|浏览(110)

我想创建一个函数,将大写(使每个单词的第一个字母大写)在我的WordPress网站的标题。
我已经能够开发一个正则表达式,我用preg_match_all()过滤它。
问题是如何迭代匹配,并使用ucwords()函数将标题大写,最后将大写的标题插入到内容中。
我将感激任何帮助。
我试过这段代码,问题是if (is_array())之后怎么继续

function headings_in_the_content($content)
{
    $regexpattern = '#(?P<full_tag><(?P<tag_name>h\d)(?P<tag_extra>[^>]*)>(?P<tag_contents>[^<]*)</h\d>)#i';
    if (preg_match_all($regexpattern, $content, $matches)) {
        foreach ($matches as $regexmatches) {
            
             if (is_array($regexmatches)) {
                    foreach ($regexmatches as $regexmatch)
                        {
                        
                        
                        
                        }
            }
                
                        
            
            
             
            
        }
        
    }

    return $content;
}

add_filter('the_content', 'headings_in_the_content', 15000);

相关问题