0

管理者がWordPressに新しいサムネイルを追加するときに、サムネイルに属性「alt」を強制したい。

入力「タイトル」にサムネイルバリデーターを保存するためのJavaScriptフックがある場合、それは素晴らしいことです!

ありがとうございました。

4

2 に答える 2

4

これを見つけたら、テーマ ディレクトリの functions.php ファイルに配置します。

function add_alt_tags($content)
{
    global $post;
    preg_match_all('/<img (.*?)\/>/', $content, $images);
    if(!is_null($images))
    {
            foreach($images[1] as $index => $value)
            {
                    if(!preg_match('/alt=/', $value))
                    {
                            $new_img = str_replace('<img', '<img alt="'.$post->post_title.'"', $images[0][$index]);
                            $content = str_replace($images[0][$index], $new_img, $content);
                    }
            }
    }
    return $content;
}
add_filter('the_content', 'add_alt_tags', 99999);

詳細はこちらhttp://www.paulund.co.uk/add-missing-alt-tags-to-wordpress-images

これは私のスニペットサイトで行われています。それが役に立てば幸い

于 2013-10-26T20:03:59.793 に答える