Tagged Questions
0
votes
0answers
111 views
use WP_Image_editor with imagefilter [closed]
I want to make an image grayscale and had been looking at this:
http://ottopress.com/2011/customizing-wordpress-images/
However wp_load_image is now deprecated and the recommended method is to use ...
0
votes
1answer
64 views
Is there any action/filter hook to use when an image gets edited in the editor?
I can't find a specific hook. If I already have added an image to an article via editor and then I edit it, I'd like to intercept the code just before it is sent again to the editor.
I already use ...
0
votes
1answer
92 views
Foliopress WYSIWYG editor does not display images
I use the Foliopress WYSIWYG editor. I inserted overview-1.png via the 'Quick Insert Image' option. This added the following mark-up:
<img width="166" height="263" alt="overview 1" ...
1
vote
3answers
1k views
HTML tags in Wordpress image caption
I'm developing a client website with Wordpress (3.3) but have found that the image caption feature strips out any HTML tags.
The resulting caption is plain text which makes proper image crediting ...
1
vote
1answer
64 views
Publish/Update post is changing image links from file url to post url
I've written a filter to wrap images included in posts with figure tags and their captions with figcaption tags. I turned off the visual editor so that it doesn't strip out all the html from the ...
0
votes
1answer
138 views
WYSIWYG Editor not working and can't find translations?! Phrases as “{#wpeditimage.img_title}”'s [closed]
I do have a problem with my wysiwyg editor. It seems that it can't find the translations and just shows the tags. It alwas doesn't save the content for the first time I save an article. So I have to ...
0
votes
3answers
448 views
How to retrieve the postID in a “image_send_to_editor” hook function?
Here is my function:
function insert_img_rel_attrib( $html, $id, $caption, $title, $align, $url )
{
$postID = ???
$rel = "<a rel='shadowbox[".$postID."]'";
if ($url) {$html = ...
1
vote
1answer
534 views
Retrieving and Storing Images Linked from Other Domains on Local Server?
(Moderator's note: The original title was "Copy and Paste picture in post without linking to original")
When I copy and paste a picture from another editor window it appears nicely but it links to ...
3
votes
2answers
2k views
Wordpress crop tool greyed out
The wordpress crop tool is greyed out for me in Firefox 3.6 (and IE7/8). I have disabled firefox add-ons and tried the solution here:
...
2
votes
1answer
3k views
Wordpress Image Editor not working - conflict?
I am having a strange issue with the built in wordpress image editor. I have no problem uploading files or preforming any other media functions. The only thing I seem to be unable to do is utilize the ...
10
votes
5answers
2k views
Resizing images to the actual size used in the editor?
Is there a way to resize images to the actual size they will be shown in the post? I have users that import a large image and then resize it in the visual editor. This is easy, since they can just ...