フォーラムへの返信
-
投稿者投稿
-
function custom_replace_featured_image($html, $post_id, $post_thumbnail_id, $size, $attr) { // 詳細ページでのみ処理を実行 if (is_single() && in_the_loop() && is_main_query()) { // デフォルト画像のURLを指定 $default_image_url = get_template_directory_uri() . '/wp-content/uploads/2024/12/XXXX.jpeg'; // デフォルト画像のパスを指定 // 新しい画像タグを生成 $html = '<img src="' . esc_url($default_image_url) . '" alt="' . esc_attr(get_the_title($post_id)) . '">'; } return $html; } add_filter('post_thumbnail_html', 'custom_replace_featured_image', 10, 5);
早速のご回答ありがとうございます。
My Snow Monkeyでスライダーをカスタマイズすることは可能でしょうか。
可能でしたら、スノーモンキーのプラグインで実装できれば嬉しいです。
♥ 0いいねをした人: 居ません -
投稿者投稿