need a plugin for WP

Status
Not open for further replies.
8 comments
are you trying to create a thumbnail for an external image? that dont work,

it will only use your uploaded images as thumbnails
 
are you trying to create a thumbnail for an external image? that dont work,

it will only use your uploaded images as thumbnails
Thank you so much

yes, I want a plugin to make images from an external url and save it as uploaded or cached image.
Do you think if any one can code such a plugin for me? I would like to pay for my needs :D
 
are you trying to create a thumbnail for an external image? that dont work,

it will only use your uploaded images as thumbnails

You know it does lol

@m107, something like in hq-uploads.com? use timthumb but you gonna need to modify it to work with external images.
 
in some WP themes there is file thumbnail.php that does exactly what you want.
you just have to integrate it in your current theme.

Code:
in index.php

<div class="thumbnail">
<?php include(TEMPLATEPATH."/thumbnail.php"); ?>
</div>


in CSS

.thumbnail {
  float: left;
  width: 112px;
  height: 112px;
  margin: 0px 10px 0px 0px;  
  padding: 0; 
  overflow: hidden;
  line-height: 170px;
  text-align: center;
}
.thumbnail a img {
  float:left;
  width: 100px;
  height: 100px;
  padding: 5px;  
  background:#a3c5e0 url(img/head.jpg) repeat-x top center;
  border:1px solid #fff;
}

the thumbnail.php
http://www.mediafire.com/?95dilxxh9ifqd6c
 
@w3bpr0jectz , thank you, but where is "index.php" ? I just edited root index.php and got error. I think i have to do it after I edit css, this is my css folder for this them:
[slide]http://lulzimg.com/i/e26d541c.jpg[/slide]

Which file should I add this css in?

Thank you for your time
 
Status
Not open for further replies.
Back
Top