フォーラムへの返信

14件の返信を表示中 - 1 - 14件目 (全14件中)
  • フォーラム: 使い方全般
    返信が含まれるトピック: このスライドショーはどう実現できますか?
    トピック投稿者 maron3001

    (@maron3001)

    mogueさま

    仰るとおり、
    その部分単体ではWPには関係の無い事かもしれませんが、
    「こういったパーツをWPに組み込みたい」
    という本質が質問に組み込まれています、
    また、スライドショーのプラグインなどもありますので、
    この手のプラグインもあるのでは無いかと思いましたので、
    こちらに投稿させて頂きました。

    書き方が誤解を招いたようで、
    失礼足しました。

    フォーラム: 使い方全般
    返信が含まれるトピック: nth-of-type(CSS3)をIEで使いたい。
    トピック投稿者 maron3001

    (@maron3001)

    nobitaさん
    Tsuyoshiさん

    おかげさまで、CSSだけで実現可能となりました。

    無知の私に、ご教授下さいまして、感謝感謝でございます。
    本当にありがとうございました。

    フォーラム: 使い方全般
    返信が含まれるトピック: nth-of-type(CSS3)をIEで使いたい。
    トピック投稿者 maron3001

    (@maron3001)

    nobitaさん

    お世話になります。

    やってみました。

    loopを

    <?php if ( have_posts() ) : ?>
    
        <div id="loop" class="<?php if ($_COOKIE['mode'] == 'grid') echo 'grid'; else echo 'list'; ?> clear">
    
    <?php
    	$i = 0;
    while ( have_posts() ) : the_post(); 
    
    if( ($i + 1) % 3 == 0){ $class = 'last';}else{ $class = '';}
    ?>
    <div <?php post_class( 'post clear '.$class ); ?> id="post_<?php the_ID(); ?>">
    
                  <div class="post-category"><?php the_category(' / '); ?>
                    <span class="post-meta"><span class="post-date">
                    <?php the_time(__('Y/m/d')) ?>
                  </span></span></div><div class="post-meta">
                    <?php if ( has_post_thumbnail() ) :?>
                    <a href="<?php the_permalink() ?>" class="thumb">
                    <?php the_post_thumbnail('thumbnail', array(
                            'alt'	=> trim(strip_tags( $post->post_title )),
                            'title'	=> trim(strip_tags( $post->post_title )),
                        )); ?>
                    </a>
                <?php endif; ?>
    
                </div>
                <h2><a href="<?php the_permalink() ?>"><?php the_title(); ?></a></h2>
                <div class="post-content"><?php if (function_exists('smart_excerpt')) smart_excerpt(get_the_excerpt(), 45); ?>
    
      </div></div>
    
        <?php
    	$i++;
     endwhile; ?>
        </div>
    
    <?php endif; ?>

    にしたところ、

    このようにちゃんと3つめの記事にのみ、lastの表記が出てきました。
    http://roomservice.deca.jp/yahooauctionimg/3.png

    CSSで、

    .list .post {
    	width: 214px;
    	height: 335px;
    	float: left;
    	margin: 10px 19px 10px 0px;
    	border-bottom: 1px solid #d9d9d9;
    	}
    
    .list .post .last {
    	width: 214px;
    	height: 335px;
    	background-color: #99cc00; <!--視覚的に判別するために色を付けてみました-->
    	float: left;
    	margin: 10px 0px 10px 0px;
    	border-bottom: 1px solid #d9d9d9;
    	}

    としてみましたが、
    適用されるのは
    .list .post {
    の方で、
    .list .post .last{
    は適用してくれません。

    なにか間違っていますでしょうか?

    フォーラム: 使い方全般
    返信が含まれるトピック: nth-of-type(CSS3)をIEで使いたい。
    トピック投稿者 maron3001

    (@maron3001)

    ありがとうございます。

    解読して、
    試してみます。

    またご連絡します。

    フォーラム: 使い方全般
    返信が含まれるトピック: nth-of-type(CSS3)をIEで使いたい。
    トピック投稿者 maron3001

    (@maron3001)

    nobitaさま

    やってみましたが分かりません。
    phpの事がイマイチ分かっておらず、勉強不足です。。
    すみませんが、
    教えていただけますでしょうか。

    【現在のloop.php】

    <?php if ( have_posts() ) : ?>
    
        <?php while ( have_posts() ) : the_post(); ?>
    
            <div <?php post_class('post clear'); ?> id="post_<?php the_ID(); ?>">
                  <div class="post-category"><?php the_category(' / '); ?>
                    <span class="post-meta"><span class="post-date">
                    <?php the_time(__('Y/m/d')) ?>
                  </span></span></div><div class="post-meta">
                    <?php if ( has_post_thumbnail() ) :?>
                    <a href="<?php the_permalink() ?>" class="thumb">
                    <?php the_post_thumbnail('thumbnail', array(
                            'alt'	=> trim(strip_tags( $post->post_title )),
                            'title'	=> trim(strip_tags( $post->post_title )),
                        )); ?>
                    </a>
                <?php endif; ?>
    
                </div>
                <h2><a href="<?php the_permalink() ?>"><?php the_title(); ?></a></h2>
    
                <div class="post-content"><?php if (function_exists('smart_excerpt')) smart_excerpt(get_the_excerpt(), 45); ?>
    
      </div></div>
        <?php endwhile; ?>
        </div>
    <?php endif; ?>

    となります。

    これのどこに

    <?php
    
    $i = 0;
    while( $i < count( $post )  ){
    
    	if( ($i + 1) % 3 == 0){ $class = 'last';}else{ $class = '';}
    
    	echo '<li class="list"><div class="post '.$class.'">'.$post[$i].'</div></li>'."\n";
    	$i++;
    }
    ?>

    と加えると、
    3の倍数の記事にlastというクラスを割り当てられるのでしょうか?

    いくつか試してみましたが、ダメでした。

    フォーラム: 使い方全般
    返信が含まれるトピック: nth-of-type(CSS3)をIEで使いたい。
    トピック投稿者 maron3001

    (@maron3001)

    nobitaさま

    ありがとうございます。

    なるほど、ちょっとその方法でテンプレートをいじって見ます。
    またご報告致します。

    フォーラム: 使い方全般
    返信が含まれるトピック: nth-of-type(CSS3)をIEで使いたい。
    トピック投稿者 maron3001

    (@maron3001)

    Tsuyoshi.さま

    調べて頂いて感謝です。
    ありがとうございます。

    ホントですね、気づきませんでした。。。。
    サポートされてないですね。

    フォーラム: 使い方全般
    返信が含まれるトピック: nth-of-type(CSS3)をIEで使いたい。
    トピック投稿者 maron3001

    (@maron3001)

    ソースを見ると

    <!--[if (gte IE 6)&(lte IE 8)]><script type="text/javascript" src="http://XXXXXXX.jp/wp-content/plugins/selectivizr/js/selectivizr.js?ver=1.0.2"></script><![endif]-->

    という記載があります。

    また、
    <script type='text/javascript' src='http://xxxxxxxxxxxxxxxxxxx.jp/wp-includes/js/jquery/jquery.js?ver=1.7.2'></script>

    と行った記載が何行かあります。

    これで読み込みはされているという事なのでしょうか?

    フォーラム: 使い方全般
    返信が含まれるトピック: nth-of-type(CSS3)をIEで使いたい。
    トピック投稿者 maron3001

    (@maron3001)

    Tsuyoshi.さん

    早速のお返事ありがとうございます。
    先日調べてSelectivizrだ!と思い試してみたいのですが、
    上手く反映されません。
    恐らく私の設定が間違っているのかもしれませんが、
    どこをどうして良いのかが分からずに困っております。

    実はWPのプラグインでもSelectivizrがあるのですが、これも反映されません。
    IE6~8でもCSS3セレクタが利用できるツールの決定版「Selectivizr」の下段に記載有り。

    ココの中に、
    「jsライブラリ(jQuery・Prototypeなど)を呼び出す記述が必要」と書いてあります。

    <head>内に
    <script type="text/javascript" src="呼び出したい「jsライブラリ」のパス"></script>

    <?php wp_head(); ?>
    の上にと言う事です。
    でこの”呼び出したい「jsライブラリ」のパス”とは、
    "/wp-includes/js/"
    と思いやってみましたが、出来ません。

    記載したのは
    header.phpのなかの

    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml" dir="<?php bloginfo('text_direction'); ?>" xml:lang="<?php bloginfo('language'); ?>">
        <head>
            <meta http-equiv="Content-Type" content="<?php bloginfo('html_type'); ?>; charset=<?php bloginfo('charset'); ?>" />
            <title><?php wp_title ( '|', true,'right' ); ?></title>
            <meta http-equiv="Content-language" content="<?php bloginfo('language'); ?>" />
    		<link rel="profile" href="http://gmpg.org/xfn/11" />
            <link rel="shortcut icon" href="<?php bloginfo('template_url'); ?>/images/favico.ico" type="image/x-icon" />
            <link rel="stylesheet" type="text/css" media="all" href="<?php bloginfo('stylesheet_url'); ?>" />
            <!--[if IE]><link rel="stylesheet" type="text/css" media="all" href="<?php bloginfo('template_url'); ?>/ie.css" /><![endif]-->
            <?php
    			wp_enqueue_script('jquery');
    			wp_enqueue_script('cycle', get_template_directory_uri() . '/js/jquery.cycle.all.min.js', 'jquery', false);
    			wp_enqueue_script('cookie', get_template_directory_uri() . '/js/jquery.cookie.js', 'jquery', false);
                if ( is_singular() ) wp_enqueue_script( 'comment-reply' );
                wp_enqueue_script('script', get_template_directory_uri() . '/js/script.js', 'jquery', false);
    		?>
           ココ→→→ <script type="text/javascript" src="/wp-includes/js/"></script>
            <?php wp_head(); ?>

    こんな状態です
    なにか間違っていますか?

    フォーラム: その他
    返信が含まれるトピック: フォーラムに投稿出来ない

    >shokun0803さん

    情報ありがとうございます。

    safari,firefox,chromeで試しても同じ現象なので、
    やはりスパム判定されてしまったのかもしれません。
    管理者に連絡してみます!

    フォーラム: その他
    返信が含まれるトピック: フォーラムに投稿出来ない

    あっ、これは別のアカウントからです。
    ITAYAと同一人物です。

    フォーラム: その他
    返信が含まれるトピック: フォーラムに投稿出来ない

    ありがとうございます。

    別のアカウントで投稿しても同じ現象が起きたのですが、
    投稿内容に記載したリンクを削除したら問題なく投稿出来ました。

    リンクを記載する際の投稿ルールなど調べたのですが特に違反は犯してないように思っております。

    フォーラム: テーマ
    返信が含まれるトピック: このサイト構造と同じ物をWPで製作可能でしょうか?
    トピック投稿者 maron3001

    (@maron3001)

    kzさん

    テーマ自作
    敷居が高そうな気がしますが、
    今後の事を考えると、ココでしっかり勉強して
    テーマを自作するのが一番いい方法かも知れませんね。

    どうもありがとうございます。
    頑張ってみます。

    フォーラム: テーマ
    返信が含まれるトピック: このサイト構造と同じ物をWPで製作可能でしょうか?
    トピック投稿者 maron3001

    (@maron3001)

    kzさん

    早速のお返事ありがとうございます!
    とても参考になりました。

    #自由と言えばWordPress
    心図よいお言葉。

    そこで、もう一点質問させてください。
    上記サイトを構築する為に、
    ベースとなる最も有効的なテーマを何かご存知でしょうか?
    よろしくお願いします。

14件の返信を表示中 - 1 - 14件目 (全14件中)