• Подскажите пожалуйста, где в файлах плагина добавить код

    
    function first_post_image() {
      global $post, $posts;
      $first_img = '';
      ob_start();
      ob_end_clean();
      $output = preg_match_all('/<img.+src=[\'"]([^\'"]+)[\'"].*>/i', $post->post_content, $matches);
      $first_img = $matches [1] [0];
      if(empty($first_img)){
       $first_img = "<?php the_post_thumbnail('thumbnail')";
    // для вывода миниатюр в похожие записи 
      }
      return $first_img;
    }
    

    И где вызвать функцию <img src="<?php echo first_post_image() ?>" /> чтобы в качестве миниатуры вывести первую картинку записи? Или можно вы сами?

    • This topic was modified 3 years, 7 months ago by Yui.

    The page I need help with: [log in to see the link]

  • The topic ‘Первое изображение записи взамен миниатур’ is closed to new replies.