WordPress OSINT, maintenance or security needs? Reach out!
TLDWP

Plugin: kama-thumbnail (Used by 10 domains)

Kama Thumbnail

👤 Timur Kamaev 📦 v3.5.1 🔗 Plugin Homepage

Convenient way to create post thumbnails on the fly without server overload.

The best alternative to scripts like “thumbnail.php”.

Supports Multisite.

Usage

The plugin for developers firstly, because it don’t do anything after install. In order to the plugin begin to work, you need use one of plugin function in your theme or plugin. Example:


Using the code in the loop you will get ready thumbnail IMG tag. Plugin takes post thumbnail image or find first image in post content, resize it and create cache. Also creates custom field for the post with URL to original image. In simple words it cache all routine and in next page loads just take cache result.

You can make thumbs from custom URL, like this:

The URL_TO_IMG must be from local server: by default, plugin don’t work with external images, because of security. But you can set allowed hosts on settings page: Settings > Media.

All plugin functions:

// return thumb url URL
echo kama_thumb_src( $args, $src );

// return thumb IMG tag
echo kama_thumb_img( $args, $src );

// return thumb IMG tag wraped with . A link of A will leads to original image.
echo kama_thumb_a_img( $args, $src );

// to get image width or height after thumb creation
echo kama_thumb( $optname );
// ex:
echo '';

Parameters:

  • $args (array/string)
    Arguments to create thumb. Accepts:

    • w | width
      (int) desired width.

    • h | height
      (int) desired height.

      if parameters w and h not set, both of them became 100 – square thumb 100х100 px.

    • notcrop
      (isset) if set crop parameter become false – crop=false.

    • crop
      (isset) Control image cropping. By default always true.

      To disable cropping set here false/0/no/none or set parameter 'notcrop'. Then image will not be cropped and will be created as small copy of original image by sizes settings of one side: width or height – here plugin select the smallest suitable side. So one side will be as it set in w or h and another side will be smaller then w or h.

      Cropping position

      Also, you can specify string: 'top', 'bottom', 'left', 'right' or 'center' and any other combinations of this strings glued with /. Ex: 'right/bottom'. All this will set cropping area:

      • 'left', 'right' – horizontal side (w)
      • 'top', 'bottom' – vertical side (h)
      • 'center' – for both sides (w and h)

      When only one value is set, the other will be by default. By default: 'center/center'.

      Examples:

      // image will be reduced by height, and width will be cropped.
      // "right" means that right side of image will be shown and left side will be cut.
      kama_thumb_img('w=200 &h=400 &crop=right');
      
      // image will be redused by width, and height will be cropped.
      // "top" means that the top of the image will be shown and bottom side will be cut.
      kama_thumb_img('w=400 &h=200 &crop=top');
      
      // you can specify two side position at once, order doesn't matter
      kama_thumb_img('w=400 &h=200 &crop=top/right');
      

      Reduce image by specified side

      In order to get not cropped proportionally rediced image by specified side: by width or height. You need specify only width or only height, then other side will be reduced proportional. And no cropping will appear here.

      kama_thumb_img('w=200');
      

      So, width of our image will be 200, and height will be as it will…
      Теперь ширина всегда будет 200, а высота какая получится… And the picture will be always full, without cropping.

    • q | quality
      (int) jpg compression quality (Default 85. max.100)

    • stub_url
      (string) URL to no_photo image.

    • alt
      (str) alt attr of img tag.

    • title
      (str) title attr of img tag.

    • class
      (str) class attr of img tag.

    • style
      (str) style attr of img tag.

    • attr
      (str) Allow to pass any attributes in IMG tag. String passes in IMG tag as it is, without escaping.

    • a_class
      (str) class attr of A tag.

    • a_style
      (str) style attr of A tag.

    • a_attr
      (str) Allow to pass any attributes in A tag. String passes in A tag as it is, without escaping.

    • no_stub
      (isset) don’t show picture stub if there is no picture. Return empty string.

    • yes_stub
      (isset) show picture stub if global option in option disable stub showing, but we need it…

    • post_id | post
      (int|WP_Post) post ID. It needs when use function not from the loop. If pass the parameter plugin will exactly knows which post to process. Parametr ‘post’ added in ver 2.1.

    • attach_id
      (int) ID of wordpress attachment image. Also, you can set this parametr by pass attachment ID to ‘$src’ parament – second parametr of plugin functions: kama_thumb_img('h=200', 250) or kama_thumb_img('h=200 &attach_id=250')

    • allow
      (str) Which hosts are allowed. This option sets globally in plugin setting, but if you need allow hosts only for the function call, specify allow hosts here. Set ‘any’ to allow to make thumbs from any site (host).

  • $src
    (string) URL to any image. In this case plugin will not parse URL from post thumbnail/content/attachments.

    If parameters passes as array second argument $src can be passed in this array, with key: src или url или link или img:

        echo kama_thumb_img( array(
            'src' => 'http://yousite.com/IMAGE_URL.jpg',
            'w' => 150,
            'h' => 100,
        ) );
    

Notes

  1. You can pass $args as string or array:

        // string
        kama_thumb_img('w=200 &h=100 &alt=IMG NAME &class=aligncenter', 'IMG_URL');
    
        // array
        kama_thumb_img( array(
            'width'  => 200,
            'height' => 150,
            'class'  => 'alignleft'
            'src'    => ''
        ) );
    
  2. You can set only one side: width | height, then other side became proportional.

  3. src parameter or second function argument is for cases when you need create thumb from any image not image of WordPress post.
  4. For test is there image for post, use this code:

        if( ! kama_thumb_img('w=150&h=150&no_stub') )
            echo 'NO img';
    

Examples

#1 Get Thumb

In the loop where you need the thumb 150х100:


Result:


#2 Not show stub image


#3 Get just thumb URL


Result: /wp-content/cache/thumb/ec799941f_100x80.png

This url you can use like:

' alt=''>

#4 kama_thumb_a_img() function


Result:


#5 Thumb of any image URL

Pass arguments as array:

 'http://yousite.com/IMAGE_URL.jpg',
        'w' => 150,
        'h' => 100,
    ) );
?>

Pass arguments as string:


When parameters passes as string and “src” parameter has additional query args (“src=$src &w=200” where $src = http://site.com/img.jpg?foo&foo2=foo3) it might be confuse. That’s why “src” parameter must passes as second function argument, when parameters passes as string (not array).

#6 Parameter post_id

Get thumb of post ID=50:


I don’t need plugin

This plugin can be easily used not as a plugin, but as a simple php file.

If you are themes developer, and need all it functionality, but you need to install the plugin as the part of your theme, this short instruction for you:

  1. Create folder in your theme, let it be ‘thumbmaker’ – it is for convenience.
  2. Download the plugin and copy the files: class.Kama_Make_Thumb.php and no_photo.jpg to the folder you just create.
  3. Include class.Kama_Make_Thumb.php file into theme functions.php, like this:
    require ‘thumbmaker/class.Kama_Make_Thumb.php’;
  4. Bingo! Use functions: kama_thumb_*() in your theme code.
  5. If necessary, open class.Kama_Make_Thumb.php and edit options (at the top of the file): cache folder URL/PATH, custom field name etc.
  • Conditions of Use – mention of this plugin in describing of your theme.
DomainExposuresHeadersLast Checked
u*r*o*3*.ru 👤 F 2026-07-22 21:53:22
t*a*w*n*e*.com F 2026-07-09 10:17:00
p*s*n.com (WP 5.9.13) ⚠️ 👤 F 2026-07-06 16:20:21
p*o*o*o*.com F 2026-07-04 12:45:06
s*o*i*i*a*a*i*o.com (WP 6.5.5) F 2026-07-04 01:28:17
c*u*l*c*n*e*.ru D 2026-07-01 04:55:05
p*l*o*o.ru 👤 F 2026-06-19 06:27:38
s*o*a*a*o*.ru F 2026-06-09 00:02:25
a*t*n*v*.com (WP 6.8.5) F 2026-06-02 20:45:07
z*p*a*a*a*m*c*i*o*.ru (WP 6.9.4) F 2026-06-01 20:51:51

Top 50 Plugins

Plugin Count
elementor 1,781,350
contact-form-7 1,763,473
elementor-pro 1,056,403
woocommerce 818,396
revslider 613,184
jetpack 459,687
js_composer 423,500
wp-rocket 341,701
essential-addons-for-elementor-lite 267,186
complianz-gdpr 260,358
gravityforms 257,842
google-site-kit 232,120
cookie-law-info 230,851
instagram-feed 226,401
sitepress-multilingual-cms 212,109
header-footer-elementor 208,941
google-analytics-for-wordpress 207,506
bluehost-wordpress-plugin 193,159
elementskit-lite 182,255
gutenberg 167,504
cookie-notice 150,713
litespeed-cache 142,941
gtranslate 126,300
wpforms-lite 125,731
the-events-calendar 123,260
gutenberg-core 121,980
astra-sites 114,946
popup-maker 110,750
woocommerce-payments 110,631
tablepress 102,411
honeypot 98,192
astra-addon 94,627
wp-smushit 91,689
duracelltomi-google-tag-manager 90,994
layerslider 90,135
coblocks 89,955
all-in-one-seo-pack 89,864
bb-plugin 86,751
akismet 85,480
premium-addons-for-elementor 85,165
cleantalk-spam-protect 83,466
ml-slider 82,941
mailchimp-for-wp 82,596
megamenu 80,887
woocommerce-gateway-stripe 80,153
fusion-builder 77,796
jet-engine 77,676
ewww-image-optimizer 76,887
smart-slider-3 76,763
wp-pagenavi 76,618

Top 50 Themes

Theme Count
hello-elementor 623,608
Divi 500,513
astra 418,376
flatsome 137,115
Avada 122,205
generatepress 115,566
pub 84,984
oceanwp 81,354
kadence 79,424
enfold 69,500
salient 65,679
twentyseventeen 54,668
bb-theme 52,923
betheme 52,600
twentytwentyfour 52,508
blocksy 51,323
cocoon-master 49,331
dt-the7 45,735
twentytwentyfive 44,941
h4 42,389
woodmart 41,191
neve 38,486
Avada-Child-Theme 37,096
gox 36,285
bridge 31,680
twentytwentyone 30,564
lightning 29,886
twentytwenty 28,924
swell 27,928
bricks 26,537
Impreza 26,232
Newspaper 24,292
twentytwentythree 22,275
epik-redesign 19,258
twentytwentytwo 18,955
uncode 18,704
twentysixteen 17,709
pro 17,598
sydney 16,686
storefront 16,470
Total 14,553
hello-theme-child-master 14,056
factory-templates-4 13,746
extendable 13,275
themify-ultra 13,031
hestia 12,693
yootheme 12,635
yith-wonder 12,470
porto 12,064
jupiter 11,703