カテゴリー
- ActionScript
- Android
- Arduino
- ASP.NET
- Atmel Studio
- AutoHotKey
- AVR
- C++
- CAN
- CentOS
- CMSIS
- CSS
- C言語
- eclipse
- Excel
- Excel VBA
- Firefox
- FTDI
- Google Chrome
- Google Map
- HTML
- HTML5 canvas
- IIS
- iTunes Script
- Java
- javascript
- jQuery
- Linux
- LPC-Link2
- MCP2515
- NetBeans
- node.js
- NXP
- PHP
- Satch
- ThinkPad
- Tips
- TOCOS
- Transact-SQL
- Ubuntu
- VB.NET
- VBScript Tips
- VirtualBox
- Visual Studio
- vmware
- WIN32API
- Windows
- Windows Server
- WordPress
- アナログ回路
- コマンドプロンプト
- デジタル回路
- データベース
- トラブルシューティング
- メモ
- 未分類
- 端書
アーカイブ
メタ情報
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