-
-
不要タグのお詫び: single.phpの関連記事内
2013/10/23 -bug
single.phpの95行目あたり
123<p class="basui"><p><?php echo mb_substr( strip_tags( stinger_noshotcode( $post->post_content ) ), 0, 50 ) . ''; ?></p><p class="motto"><a href="<?php the_permalink(); ?>">記事を読む</a></p>の
1<p><?php echoの [crayon-601 ...
-
-
今までのSTINGER3の主な変更のまとめ
今までの主な変更内容を記憶限り以下にまとめます。 ご参考下さい。 ※作業は必ず、バックアップを取って行ってください。 ※あと、作業は必ず、バックアップを取って行ってください。 ※そして、作業は必ず、バ ...
-
-
STINGER3の「追従するSNSボタン」を削除する方法
僕は好きなのですが、追従する「SNSボタン」がウザイ!という声をよく聞くので 対処方法を記載します。 消す方法 新しいバージョンはfooter.phpの下の方、古いものはheader.phpに [cr ...
-
-
functions.phpに不要な記述
2013/09/23 -bug
特別な害はないと思いますがfunctionsに不要な記述がありましたので御報告致します functions.phpの最初
1234567891011<?phpfunction register_user_script() {if (!is_admin()) {$script_directory = get_template_directory_uri();wp_deregister_script('jquery');wp_enqueue_script('jquery', 'http://ajax.googleapis.com/ajax/libs/jquery/1.8.0/jquery.min.js');wp_enqueue_script('MyTheme_InitScript',$script_directory.'/init.js',array('jquery'));}}add_action('init','register_user_script');上記8行目の ...