yuu_nkjm blog


2012-12-05(Wed) [長年日記] 編集

[WordPress] Responsiveテーマの書きかえ

固定ページテンプレートの書きかえ (page.php, content-sidebar-page.php)

<?php echo responsive_breadcrumb_lists(); ?>の下あたりに入れる.

<!--------- nkjm add next-prev start --------->
<div class="next-prev">
<?php previous_page_link_plus( array(
    'order_by' => 'menu_order',
    'in_same_parent' => true,
    'link'           => 'Prev: %title',
) );?> |
<?php next_page_link_plus( array(
    'order_by' => 'menu_order',
    'in_same_parent' => true,
    'link'           => 'Next: %title',
) );?>
</div>
<!--------- nkjm add next-prev end --------->

<!-- end of #content -->の上あたりに入れる.

 <!-- nkjm add 2012-12-08 start -->
<div class="next-prev">
<?php previous_page_link_plus( array(
    'order_by' => 'menu_order',
    'in_same_parent' => true,
    'link'           => 'Prev: %title',
) );?> |
<?php next_page_link_plus( array(
    'order_by' => 'menu_order',
    'in_same_parent' => true,
    'link'           => 'Next: %title',
) );?>
</div>      
<?php echo responsive_breadcrumb_lists(); ?>
<!-- nkjm add 2012-12-08 end -->

functions.php

/** nkjm add for remove rel next/prev **/
remove_action('wp_head', 'adjacent_posts_rel_link_wp_head', 10);

header.php

</head>の直前で読み込む

<script type="text/javascript" src="http://www.nkjmlab.org/open/wplab/jquery.toc.min.js"></script>
<script type="text/javascript" src="http://www.nkjmlab.org/open/wplab/jquery.collapse.js"></script>
<script type="text/javascript" src="http://www.nkjmlab.org/open/wplab/jquery.collapse_storage.js"></script>
<script type="text/javascript" src="http://www.nkjmlab.org/open/wplab/wplab-header.js"></script>
<link rel="stylesheet" id="my-wplab"  href="http://www.nkjmlab.org/open/wplab/wplab.css" type="text/css" media="all" />
<link rel="stylesheet" id="my-print"  href="http://www.nkjmlab.org/open/wplab/wplab-print.css" type="text/css" media="print" />

メモ

パンくずリスト
<?php echo responsive_breadcrumb_lists(); ?>
目次の生成(Widgetにいれた)
<!--------- nkjm add generate external toc start --------->
<div class="generate-toc"></div>
<!--------- nkjm add generate external toc end --------->

2012-12-04(Tue) [長年日記] 編集

[Linux][tcpdump] tcpdumpで特定のポートへのパケットを監視する

tcpdump port 25
 
10:43:29.150923 IP tinamous3.**.com.http > v157**.myvps.jp.opencore: Flags [S.], seq 307120186, ack 317587457, win 16384, options [mss 1460], length 0
10:43:38.514822 IP tinamous3.**.com.http > v157**.myvps.jp.40101: Flags [S.], seq 1354444329, ack 1682702337, win 16384, options [mss 1460], length 0

ローカルホストからローカルホストへの接続は検知されないことに注意.

ポートまでパケットが到達していそうだったら,次はそのポートをサービスが待ち受けているかを確認する.サービス(postfixやbindなど)の待ち受け状況をnetstatで確認する - yuu_nkjm blog(2011-12-06)あたりも.


2012-12-03(Mon) [長年日記] 編集

[jQuery][WordPress] jQueryのTips

$のバッティングの回避

Uncaught TypeError: Property '%htmlEscapedText%apos; of object [object DOMWindow] is not a functionというエラーについて - by shigemk2などを参考のこと.自分が利用する場合はjQueryって直接指定すればいいんだけど,自分が利用しているjsはそうもいかない.jQueryのバージョンの混在などもめんどくさい問題を引き起こしそうだ.

セレクタで選んでeachした対象を処理するにはfind

[jQuery]eachとthisとfindの使いどころメモ | HappyQualityあたりを参照.

変数がundefinedか確認

javascriptメモ: memoを参照.

if(typeof a === "undefined"){ alert("未定義") };

トップ 最新 追記 設定
2006|01|06|12|
2007|06|09|
2008|01|03|04|06|07|08|09|10|12|
2009|01|02|05|06|07|08|10|11|12|
2010|03|04|05|06|07|08|09|10|11|
2011|01|02|03|04|05|06|07|08|09|11|12|
2012|01|02|04|06|07|08|10|11|12|
2013|01|02|03|07|08|10|11|12|
2014|01|02|04|05|06|07|08|09|10|11|
2015|01|02|07|11|12|
2016|01|03|05|07|08|09|