wordpressのショートコードを自作する
wordpressのショートコードを自作する際のサンプルです 1.まずは『functions.php』を開きます。 (pathは~/wp-content/themes/テーマ名の直下です。) 2.『functions.php』の最後に以下を記述します。 add_s...
Record of Development
wordpressのショートコードを自作する際のサンプルです 1.まずは『functions.php』を開きます。 (pathは~/wp-content/themes/テーマ名の直下です。) 2.『functions.php』の最後に以下を記述します。 add_s...
以下のようなエラーが出て「pod install」「pod update」が失敗する時は・・・ Analyzing dependencies The dependency `Charts` is not used in any concrete target. t...
CocoaPods? iOS/Macアプリ用のライブラリ管理をしてくれます。 GitHubなどからライブラリをダウンロードしてきてプロジェクトに追加といった作業を自動でしてくれます。 とっても便利です。 CocoaPodsのインストール CocoaPodsのイン...
MySQLで重複レコードを探す 以下のSQLはtabel1から重複しているnameカラムを検索 select name from table1 group by name having count(*) >= 2