• <font style=”vertical-align: inherit;”><font style=”vertical-align: inherit;”>Давним-давно я полінувався написати скрипт, щоб він автоматично вставляв заголовок поста як альтернативне зображення в цей пост. Можливо, я б так і зробив, якби цей плагін не попався мені на очі. Але зараз я помітив, що ця функція стала платною. Ви жартуєте? Вам не потрібно бути технологічним гуру, щоб робити це без плагіна. Дякую тобі!</font></font>

    Next code lines will do the same in your functions.php (save 8$ per month Jesus!!!):

    function replace_empty_alt_tags_with_post_title($attr, $attachment, $size) {
         // Check if the alt attribute is empty
         if (empty($attr['alt'])) {
             // Get the ID of the post to which the image is attached
             $post_id = $attachment->post_parent;
            
             // Get the post title
             $post_title = get_the_title($post_id);
            
             // If there is a title, replace the empty alt with the post title
             if ($post_title) {
                 $attr['alt'] = $post_title;
             }
         }
        
         return $attr;
    }
    • This topic was modified 6 months, 3 weeks ago by alaron.
  • The topic ‘Thirst for profit’ is closed to new replies.