bekar09
Forum Replies Created
-
Forum: Plugins
In reply to: Image upload via external scriptplease update on the same once you’re done or have you already written the plugin? can we insert multiple images(a gallery) to a particular post? also an image upload plugin through image url’s would be a nice idea.
Forum: Plugins
In reply to: [Plugin: Hot Linked Image Cacher] compatibility with insights?did someone try it out?
Forum: Plugins
In reply to: [Plugin: WP Super Cache] Unable To Post With Version 0.9.3I noticed that I’m having the problem when I disable caching for logged in users. guys can somebody post the best(optimum) settings for this plugin to get the best results?
Forum: Fixing WordPress
In reply to: Add Image by URL – Add image to gallery?Hot Linked Image Cacher – this plugin is similar to what we all want.
but it needs much tweaking. please try your hands and update here.
is there any way we can have the default wordpress directory structure? like ‘year/month/date’ blahblah. in this context I would like to know whether the plugin uses the core wordpress functions to store an image into the file system and thereby generate the attachment id for a particular image?
i want to use have the default wordpress directory structure. help is much appreciated.
Forum: Plugins
In reply to: [Plugin: WP Super Cache] Unable To Post With Version 0.9.3Hi,
I’m using WP 2.7.1 and WP Super Cache 0.9.6(upgraded recently). I’m having the same problem– “Your attempt to edit [post_title} has failed. Please try again”.I tried both ‘Half On’ and ‘On’ mode, but same problem.
donncha please suggest. should i delete the plugin and install a fresh copy and try? or there’s any quick fix for this?
Forum: Fixing WordPress
In reply to: Post title char count?thats a perfect solution. thanks a lot.
Forum: Plugins
In reply to: [Plugin: WP-o-Matic] Duplicate Postso will this top posting duplicate posts? i think this is very useful. please suggest.
Forum: Plugins
In reply to: Custom queriesYou’ll have to look at the time parameters section of query_posts for that.
I went through it
w= – week of the year (from 0 to 53) and uses the MySQL WEEK command Mode=1.
but could’nt make it out. could you please frame the query. please MichealH. thanks.
Forum: Plugins
In reply to: Custom queriesthanks MichaelH,
But I’m unable to get the current week. could you please elaborate. i’m a novice. thanks.Forum: Plugins
In reply to: Custom queriesfirstly sorry for the previous bumps. the A-Z Index plugin seems to be complicated. I think I’ll try with
Also found this to list posts alphabetically, with each letter in separate section:
https://www.ads-software.com/support/topic/148727?replies=14#post-666306MichaelH any suggestion for
Hi MichaelH,
the above solution solved my problem, but leads to a new problem. If i don’t have posts for today then the above query returns nothing. is it possible to add an if condition that if the above mentioned returns nothing, then show posts from the last 7 days in the random order?how to achieve that? please help me.
thanks.
Forum: Plugins
In reply to: No duplicate posts?is it possible to use ‘get_the_title()’ to fetch the title and then match with the title that I’m posting now and then if it exists, then call ‘wp_update_post()’ function else call ‘wp_insert_post()’.
any ideas?
Forum: Plugins
In reply to: How to add a post to wordpress from an external source?what do you mean by external source? do you want to add posts from an external script?
please elaborate. i think i can help you.Forum: Plugins
In reply to: Custom queriesSee if this gets you there:
<?php
$today = getdate();
$showpost = new WP_query();
$showpost->query(‘showposts=’.$options[‘left_X_news’].’&cat=-‘.$options[‘photos_id’].’,-‘.$options[‘videos_id’].’,-‘.$options[‘celebrities_id’].’&orderby=rand&year=’ .$today[“year”] .’&monthnum=’ .$today[“mon”] .’&day=’ .$today[“mday”]);
?>Hi MichaelH,
the above solution solved my problem, but leads to a new problem. If i don’t have posts for today then the above query returns nothing. is it possible to add an if condition that if the above mentioned returns nothing, then show posts from the last 7 days in the random order?how to achieve that? please help me.
[moderated–bumps removed. Please refrain from bumping as per Forum Rules]
Forum: Fixing WordPress
In reply to: Upload new media: Unable to create directoryis it possible to create the image folder through an external script and upload an image through an image url?