iguigu
フォーラムへの返信
-
フォーラム: 使い方全般
返信が含まれるトピック: 記事が属しているカテゴリのランキングフォーラム: 使い方全般
返信が含まれるトピック: 記事が属しているカテゴリのランキングフォーラム: 使い方全般
返信が含まれるトピック: 記事が属しているカテゴリのランキングありがとうございます。
taxonomyの階層の設定をfalseにするとできるのですが、 trueにすると表示されなくなります。
trueで表示する方法はないのでしょうか?フォーラム: 使い方全般
返信が含まれるトピック: 記事が属しているカテゴリのランキングフォーラム: 使い方全般
返信が含まれるトピック: 記事が属しているカテゴリのランキングフォーラム: 使い方全般
返信が含まれるトピック: 記事が属しているカテゴリのランキングこれでいいのでしょうか。
カスタム投稿のsingle.phpなのですが、何もランキングが表示されないです。。<?php global $post; $ids = wp_get_object_terms( $post->ID, 'column_category', array( 'fields' => 'ids' ) ); $args = array( 'posts_per_page' => 3, 'post_type' => 'column', 'meta_key' => 'views', 'orderby' => 'meta_value_num', 'category__and' => $ids ); $posts = get_posts($args); $i = 0; foreach($posts as $post) : $i++; ?> <li class="media kanshu"> <!-- ランキング順位 --> <div class="rank"><?php echo $i;?></div> <!-- サムネイル --> <div class="media-left"> <a href="<?php the_permalink($posts->ID) ?>"><?php the_post_thumbnail($posts->ID,'thumb'); ?></a> </div> <!-- 記事 --> <div class="media-body"> <a href="<?php the_permalink($posts->ID) ?>"> <?php echo $post-> post_title;//mb_substr(strip_tags($post-> post_title),0,40).'...'; ?> </a> </div>
フォーラム: 使い方全般
返信が含まれるトピック: 記事が属しているカテゴリのランキングフォーラム: 使い方全般
返信が含まれるトピック: MW WP FORMのフィルタフックがうまくいかないフォーム側の記述は
[mwform_text name=”sanka” size=”60″]
としています。
{post_title} といった引数は機能してるため、
上記のフィルタフックになにか問題があるかと思います。フォーラム: 使い方全般
返信が含まれるトピック: 日別にまとめたの記事一覧ありがとうございます。
しかしこちらですと、同じ日に複数投稿した場合、2017/6/23
・記事タイトル12017/6/23
・記事タイトル22017/6/23
・記事タイトル3この様な結果になってしまいます。
2017/6/23
・記事タイトル1
・記事タイトル2
・記事タイトル3この様に表示をしたいと思います。
フォーラム: 使い方全般
返信が含まれるトピック: カスタムメニューに投稿のアイキャッチ画像を表示したいフォーラム: 使い方全般
返信が含まれるトピック: アドバンスカスタムフィールドで関連させた記事を探す方法フォーラム: 使い方全般
返信が含まれるトピック: Visual composerのGrid builderを使ってますがありがとうございます!!
しかしシンタックスエラーが出るようです。。。
Parse error: syntax error, unexpected ‘$cat’ (T_VARIABLE) in /home/carrot-vege/e-mercato.net/public_html/wp_mercato/wp-content/themes/bridge-child/functions.php on line 164
フォーラム: 使い方全般
返信が含まれるトピック: カスタム投稿新着一覧を出力するコードアドバイスありがとうございます
なんとか出来てしまいました。
しかし下記の書き方ですと、タクソノミーやタームごとにfunction書かないといけなくなってしまうとおもいます。。例えば、 functionの記述は1で
[list_pancake cat=タクソノミ(カテゴリ)名]
といったショートコードで済むようにするにはどうすればいいでしょうか?よろしくお願いいたします。
function getCatItems($atts, $content = null){ $args = array( 'posts_per_page' => 3, 'orderby' => 'rand', 'post_type' => 'menu', 'menulist' => 'food', 'post_status' => 'publish' ); global $post; $oldpost = $post; $myposts = get_posts($args); $retHtml = '<ul>'; $i = 0; foreach($myposts as $post): setup_postdata($post); $i = $i + 1; $retHtml.='<li class="li'.$i.'"><a href="'.get_permalink().'">'. get_the_post_thumbnail( $page->ID, 'menuimg', 'class=img-circle img-responsive mauto display' ) .'</a><a href="'.get_permalink().'"><h2 class="entry-title">'; if (strlen($post->post_title) > 60) { $retHtml.=mb_substr($post->post_title, 0, 60).'...'; }else{ $retHtml.= get_the_title(); } $retHtml.='</h2></a>'. get_field('price') .'<p>'. get_the_excerpt() .'</p></li>'; endforeach; $retHtml.='</ul>'; $post = $oldpost; return $retHtml; } add_shortcode("list_pancake","getCatItems");
フォーラム: 使い方全般
返信が含まれるトピック: ショートコード挑戦 初心者ですフォーラム: 使い方全般
返信が含まれるトピック: ショートコード挑戦 初心者ですすごい勉強になりました
ありがとうございます
上記を見マネして<?php query_posts('post_type=itemlist'); if(have_posts()):while(have_posts()):the_post(); ?> <div class="item"><a href="<?php the_permalink() ?>"><h3><?php the_title(); ?></h3> <?php the_post_thumbnail('item_thum',array('class' => 'img-responsive')); ?> <p><?php echo mb_substr(get_the_excerpt(), 0, 30); ?></p></a></div> <?php endwhile; endif; wp_reset_query(); ?>
を
function getcosmeList($atts){ $content = ''; query_posts('post_type=itemlist'); if(have_posts()): while(have_posts()): the_post(); $content.='<div class="item"><a href="'. the_permalink() .'"><h3>'. the_title() .'</h3>'. the_post_thumbnail('item_thum',array('class' => 'img-responsive')) .'<p>'. mb_substr(get_the_excerpt(), 0, 30) .'</p></a></div>'; endwhile; endif; return $content; } add_shortcode("cosmelist","getcosmeList");
したのですが、aタグ反映されず、URLが文字列として出てしまいます。。。
なにか間違っているのでしょうか??