Exemplo n.º 1
0
        </a>
      </div><!-- /.related-entry-thumb -->
      
      <div class="related-entry-content">
        <h4 class="related-entry-title"> <a href="<?php 
        the_permalink();
        ?>
">
          <?php 
        the_title();
        //記事のタイトル
        ?>
          </a></h4>
        <p class="related-entry-snippet">
       <?php 
        echo mb_substr(strip_tags(strip_shotcodes($post->post_content)), 0, 70) . '';
        //記事本文の抜粋を70文字だけ取り出す
        ?>
</p>
        <p class="related-entry-read"><a href="<?php 
        the_permalink();
        ?>
">記事を読む</a></p>
      </div><!-- /.related-entry-content -->
    </div><!-- /.new-entry -->
  
  <?php 
    }
    ?>
  
  <?php 
Exemplo n.º 2
0
function get_the_description()
{
    $options = get_sns_options();
    if ($options['ogp_description'] == 'meta') {
        global $post;
        //All in One SEO PackプラグインのDescriptionを取得
        $s = get_post_meta($post->ID, _aioseop_description, true);
    } else {
        $s = strip_shotcodes(get_the_excerpt());
        $s = mb_substr(str_replace(array("\r\n", "\r", "\n"), '', strip_tags($s)), 0, 100);
    }
    return $s;
}