dirkhaim
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Show built-in gallery in RSS feedThe problem was with Podpress. Disabled it and many mysterious problems were suddenly solved.
Forum: Themes and Templates
In reply to: RSS and do_shortcode(‘[gallery]‘)Any chance you can post the diff of the code hacking you did?
Thanks
BTW, it will be great if anyone will do a plugin out of it.
Forum: Fixing WordPress
In reply to: tags pages not working rightI use tags as genres for music posts:
http://www.tinyways.com/category/music/You can see the tags under the post title (first line of the post, usually before the flash player)
categories work fine and no related plugins used
Forum: Fixing WordPress
In reply to: how to detect if in the root of the blogPerfect. Exactly what I was looking for.
Forum: Plugins
In reply to: help: need to append text to content and excerptSorry, but that was a while ago. Since then I changed the code to it on runtime and I don’t remember how I did it. Basically you can find out how to do it by reverse engineering the post save flow.
Forum: Plugins
In reply to: help: need to append text to content and excerptI actually solved the issue by using wpdb->query to append the text to the content and excerpt
still, I would rather have an API function to do this
Forum: Plugins
In reply to: help: need to append text to content and excerptno, because I call a python script to resize images and create set of images in different size for each photo
it’s a lot of work, and I don’t really need it to happen everytime
Forum: Plugins
In reply to: help: need to append text to content and excerptfirst I tried to hook an action to post_save, but there I had a problem using wp_post_update. I created a loop, so it’s not good.
My second approach as to use filters, so I decided to I will modify the content by using the content_save_pre hook, but there I don’t have the post ID and I have no access to the custom fields, from which I need to take data.
I am kind of stuck.
Any one can direct me to the best solution?
Thanks
Forum: Fixing WordPress
In reply to: wp_comments db overheadok, got it:
OPTIMIZE TABLE should be used if you have deleted a large part of a table or if you have made many changes to a table with variable-length rows (tables that have VARCHAR, VARBINARY, BLOB, or TEXT columns). Deleted rows are maintained in a linked list and subsequent INSERT operations reuse old row positions. You can use OPTIMIZE TABLE to reclaim the unused space and to defragment the data file.
Forum: Plugins
In reply to: track changes plugin?any news about a living plugin that does this?
The case is that of a few editors, someone writing and others editing, so I want to be able to track changes, just like MS Word does it. WP-Versioning looks quite dead
anyone?
Forum: Fixing WordPress
In reply to: Assigning meta keywords to specific posts – how?thanks. going to do a bit of studying now.
Forum: Fixing WordPress
In reply to: Assigning meta keywords to specific posts – how?I am quite new to WP, do you have a link to a guide that will explain this better (the logic and all)?
Forum: Fixing WordPress
In reply to: Showing the first XXX words of a post in the index – how?it seems so obvious π
thanks.