この記事は最後に更新してから1年以上経過しています。
説明
投稿記事の中で画像パーツを使いたいときがある。画像パーツの配置場所は、/imgディレクトリのようなテーマ外の場合と、/wp-content/themes/mytheme/imagesディレクトリのようなテーマ内の場合があり、今回は後者のケース。ショートコードを使って投稿記事の画像ファイルのURLを記述する方法を紹介したい。 通常、投稿記事にテーマ内の画像ファイルを入れる場合、<img src="/wp-content/themes/mytheme/images/logo.gif" />
<img src="http://localhost/wp-content/themes/mytheme/images/logo.gif" />
<img src="[tp /]/images/logo.gif" />
<img src="[tp]/images/logo.gif[/tp]" />
add_shortcode( 'tp', 'shortcode_tp' );
function shortcode_tp( $atts, $content = '' ) {
return get_template_directory_uri().$content;
}
最終更新 : 2018年05月27日 10:53
関連
お勧め
get_next_image_link(2021年7月25日 更新)
string get_next_image_link( [ string | int[] $size = 'thumbnail' [ , string | false $text = false ] ] )
次の添付ファイルへのリンクを取得する。
wp_after_insert_post(2020年12月11日 更新)
void wp_after_insert_post( int | WP_Post $post, bool $update, WP_Post $post_before )
投稿情報を保存した後にアクションを実行する。
wp_save_post_revision(2024年1月10日 更新)
int | WP_Error | void wp_save_post_revision( int $post_id )
現状の投稿のリビジョンを作成する。
wp_debug_backtrace_summary(2012年6月15日 更新)
mixed wp_debug_backtrace_summary( [ string $ignore_class = null [ , int $skip_frames = 0 [ , bool $pretty = true ] ] ] )
デバッグ用の呼び出し情報を取得する。
nocache_headers(2018年5月27日 更新)
void nocache_headers( )
ブラウザのキャッシュを無効にするHTTPヘッダーを出力する。