[php]
<?php
$title= get_the_title();
$post_thumbnail_attr = array(
‘alt’ =>$title,
‘title’ => $title,
);
the_post_thumbnail(array(100,100) ,$post_thumbnail_attr);
?>[/php]
タグ: CMS
AWSの課金が始まった。
無料試用期間一年経って、Amazon Web Servicesの課金がスタート。
で、トータル52ドルと15セント。
現在の契約はEC2、RDSともにmicroInstance。
5ドメインを運用している。
以下内訳。
AWS Service Charges $52.15
Data Transfer $0.34
Elastic Compute Cloud $20.65
RDS Service $24.97
Route 53 $2.53
Simple Notification Service $0.00
Simple Storage Service $0.01
CT to be collected $3.65
GST to be collected $0.00
US Sales Tax to be collected $0.00
VAT to be collected $0.00
正直やすいか高いか良うわからんね。
wordpressをダンプで移行時、Call to undefined function wp_register_plugin_realpathエラー
wordpressをダンプで移行時、Call to undefined function wp_register_plugin_realpathエラーが起きた。
ググって見るとAdvanced Custom Fieldsプラグインにてレジストされたプラグインを利用している場合に発生するようなので、移行元のMysQLからダンプ準備する際にプラグインをいったんはずし、ダンプ作成。
その後移転先にエクスポート、改めてプラグインを有効にすることで回避可能ー。