1

これは私を殺しているので、誰かが助けてくれることを願っています。私は他の誰かのコードを扱っていて、多くの問題を抱えています。私はワードプレスの初心者です。

私が達成したいのは、投稿でギャラリーの最初の画像をページの上部に表示し、次にその下の 2 番目の画像 (いくつかのテキスト コンテンツの隣) を表示し、その下に残りのすべての画像を表示することです。ギャラリーで。何らかの理由で、意図的に除外されているかのように、ギャラリーの最後の 2 つの画像が現在除外されています。ご協力いただきありがとうございます。

これは現在のコードです:

<?php

get_header();

if (have_posts()) {
while (have_posts()) {
    the_post();
    $images = GetPostImages(); // Get Post Images
    $tags = GetPostTags(); // Get Post Tags String
    ?>                    
<div class="project">

<img src="<?php echo $images[1]->guid; ?>" class="large" width="1000" height="700" />

<div class="projectdesc">  
    <h1><?php the_title(); ?></h1>
        <p class="tags"><?php echo $tags; ?></p>

    <?php 
the_content(); ?>

</div>

<img src="<?php echo $images[2]->guid; ?>" class="right" width="600" height="400" />

 <?php
        // Additional Project Images
        for ($i = 3; $i < count($images); $i++) {
            ?>
            <img src="<?php echo $images[$i]->guid; ?>" class="large" width="1000"/>        
            <?php
        }
        ?> 

    </div>

    <?php
}
}

get_footer();
?>`

functions.php ファイル内のコードも以下に示します。これは、投稿ページが画像を処理する方法を制御すると思いますか?

function GetPostImages() {
global $post;

// Get image attachments
$images = get_children('post_type=attachment&post_mime_type=image&post_parent='.$post->ID);

// Sort by menu_order
foreach ($images as $key=>$image) {
    $newImages[$image->menu_order] = $image;
}

// Return
return $newImages;

}

4

1 に答える 1

2

wp_get_attachment_image_src()を使用して画像ソースを取得します

$attr = wp_get_attachment_image_src(int $id,string $size); //where $id is image post id

$width  =  $attr[1];
$height =  $attr[2];
$src    =  $attr[0]; //the source

echo sprintf('<img src="%s" alt="" height="%s" width="%s"/>',$src,$height,$width);

functions.php ファイル内、または functions.php インクルード内のインクルード ファイル内...

function setup_images(){

//Register Image dimensions
add_image_size( 'large',1000,700,true); //'large' will be the string used in $size
add_image_size( 'med',600,400,true);  //or 'med'
}
add_action('after_setup_theme','setup_images'); //hook that function up in the right place
于 2012-08-01T14:37:44.797 に答える