Category Archives: WordPress

WordPressでプラグインを入れずに記事内でjavascriptを実行したい場合。

以上。 以下例。 実行 alert('Hello World!'); 変更されたくない場合はtextareaにreadonlyでもつける。というか別にtextareaでなくてもよい。

Posted in javascript, WordPress | Leave a comment

メモ

プラグインで SyntaxHighlighter Evolved と Inline Javascript Plugin が競合したので後者を削除。 js書くときは 実行 alert('Hello World!'); でが … Continue reading

Posted in WordPress, メモ | Leave a comment

WordPress3.1の.htaccessのmod_rewrite設定

大体 RewriteEngine On RewriteBase /hoge/ RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d … Continue reading

Posted in WordPress, 未分類 | Leave a comment

WordPressの移行メモ

update wp_options set option_value ='新しいサイトアドレス(スラッシュなし)' where option_name in ('siteurl ', 'home') あと.htacces … Continue reading

Posted in WordPress | Leave a comment

WordPressメモ

the_content() コンテンツの出力 get_the_content() コンテンツの取得 コンテンツ中、一番目の画像の取得(簡易) $thumbnail_url = false; $m = array(); p … Continue reading

Posted in WordPress | Leave a comment

WordPress注意点

検索フォームのinput[type=submit]要素のname属性がsubmitなのでjsでform.submit();しても失敗してしまう。名前変える必要あり。

Posted in WordPress | Leave a comment