ページローディングに関しまして
-
WordPress ページングはやめてAjaxローディングにする
http://hijiriworld.com/web/wp-ajax-loading/上記のサイトにて、ページのローディングの処理を行っているんですが、
タイトルの部分のみの取得はスムーズに行えていますが、カテゴリー名の取得、画像の取得がうまく動いてくれません。
お分かりになるかたご教授頂ければと思います。
よろしくお願い致します。more-disp.php—————————————————————-
foreach ($results as $result) {
$html .= ‘<ul style=” list-style-type: none;”>’;
$html .= ‘<li class= “‘ .apply_filters(‘the_category’, $result->post_title). ‘”>ID). ‘” class=”artucle_box”>’;
$html .= ‘<article>’;
$html .= ‘<h3 class=”category_title”><img src=”‘ .get_template_directory_uri(). ‘/images/’ .post_custom(‘article_icon’). ‘” width=”150″ height=”46″ alt=”カテゴリー別アイコン”></h3>’;
$html .= ‘<img src=”‘ .get_template_directory_uri(). ‘/images/’ .post_custom(‘article_img’). ‘” width=”268″ height=”160″ alt=”画像名” class=”sam_img”>’;
$html .= ‘<p class=”pd5″>’ .the_time(‘Y.n/j’). ‘ <?php if(mb_strlen($post->post_title)>10) { $title= mb_substr($post->post_title,0,10) ; echo $title. “…” ; } else {echo $post->post_title;}?></p>’;
$html .= ‘<p class=”pd5″>’.mb_substr(strip_tags($post-> post_content),0,30).’…’.'</p>’;
$html .= ‘</article>’;
$html .= ‘‘;
$html .= ”;
$html .= ”;
}—————————————————————-
- トピック「ページローディングに関しまして」には新たに返信することはできません。