実装したいこと
・WordPressでブログカードを自作したい。
・ブログカードの抜粋文を、head内に配置しているdescriptionのcontentから抜き出したい。
・descriptionから抜き出す際、get_the_excerpt
の挙動と同様に、55単語を抜き出して文字列の後ろに"[...]" を付加したい。
HTML
1<meta name="description" content="その叙情的なリリックと洗練されたスタイルで、多くの若者に人気を博しているラッパーがRin音です。「snow jamは聴いたことある」という方も多いのではないでしょうか?">
現状
参考記事を基に、WordPressでブログカードを自作しています。
抜粋文を抜き出す関数をfunction ltl_get_the_excerpt($post_id)
と定義し、get_the_excerpt
を使用して文章を抜き出しています。
ただ、本文の一番最初に画像の出典情報が含まれているため、出典情報を含まないように記述しているdescriptionのcontent内から抜き出すように変更したいです。
コード全文
PHP
1// 記事IDを指定して抜粋文を取得 2function ltl_get_the_excerpt($post_id){ 3 global $post; 4 $post_bu = $post; 5 $post = get_post($post_id); 6 setup_postdata($post_id); 7 $output = get_the_excerpt(); 8 $post = $post_bu; 9 return $output; 10} 11// 内部リンクのデータをHTMLに出力する 12function nlink_scode($atts) { 13 extract(shortcode_atts(array( 14 'url'=>"", 15 'title'=>"", 16 'excerpt'=>"", 17 'date'=>"" 18 ),$atts)); 19 $id = url_to_postid($url); // URLから投稿IDを取得 20 // タイトルを取得 21 if(empty($title)){ 22 $title = esc_html(get_the_title($id)); 23 } 24 // 抜粋文を取得 25 if(empty($excerpt)){ 26 $excerpt = esc_html(ltl_get_the_excerpt($id)); 27 } 28 // 更新日を取得 29 if(empty($date)){ 30 $date = esc_html(get_the_modified_date('Y年m月d日',$id)); 31 } 32 // アイキャッチ画像を取得 33 if(has_post_thumbnail($id)) { 34 $img = wp_get_attachment_image_src(get_post_thumbnail_id($id),array($img_width,$img_height)); 35 $img_tag = "<img src='" . $img[0] . "' alt='{$title}' width=" . $img[1] . " height=" . $img[2] . " />"; 36 } 37 else{ 38 $img_tag ='<img src="'.$no_image.'" alt="" width="'.$img_width.'" height="'.$img_height.'" />'; 39 } 40 $nlink .=' 41 <div class="blog-card"> 42 <a href="'. $url .'"> 43 <div class="blog-card-thumbnail">'. $img_tag .'</div> 44 <div class="blog-card-content"> 45 <div class="blog-card-title">'. $title .' </div> 46 <div class="blog-card-excerpt">'. $excerpt .'</div> 47 <div class="blog-card-date">'. $date .'</div> 48 </div> 49 </a> 50 </div>'; 51 return $nlink; 52} 53add_shortcode("nlink", "nlink_scode");
以上の状況なのですが、解決方法が分かる方がいらっしゃいましたらご教示いただけないでしょうか?
あなたの回答
tips
プレビュー