विवरण
For cropping a post thumbnail image to 200×300 pixels:
<?php
the_post();
img(200, 300);
?>
This will verify the existence of post thumbnail, crop the image, save it in uploads folder, and generate an image tag.
To verify the existence of a post thumbnail, you can use has_img()
<?php if (has_img()): ?>
<figure>
<?php img(200, 300) ?>
<figcaption>Some text</figcaption>
</figure>
<?php endif ?>
To crop images that are not post thumbnails, you can use crop($url, $size)
<?php
$cropped_url= crop( get_bloginfo('url') . '/wp-content/uploads/image.jpg', array(200, 300) );
?>
<img src="<?php echo $cropped_url ?>">
स्थापना
- Upload
plugin-name.phpto the/wp-content/plugins/directory - Activate the plugin through the ‘Plugins’ menu in WordPress
- Done 🙂 Use the new template tags on your theme, eg
<?php the_post(); img(200, 300); ?>
प्रश्नोत्तर
- When using img(), where does the image come from?
-
The img() template tag gets the image from your post thumbnail.
समीक्षाहरू
यस प्लगिनको लागि कुनै समीक्षाहरू छैनन्।
योगदानकर्ता र डेभलपरहरू
“Image Cropper” खुला स्रोत सफ्टवेयर हो। निम्न व्यक्तिहरूले यो प्लगिनमा योगदान गरेका छन्।
योगदानकर्ताहरू“Image Cropper” लाई आफ्नो भाषामा अनुवाद गर्नुहोस्
विकासमा रुचि छ?
आरएसएस द्वारा कोड ब्राउज गर्नुहोस्, एसभीएन रिपजिटरी हेर्नुहोस्, वा विकास लग को सदस्यता लिनुहोस्।
चेन्जलग
0.3.0
- First public version.