LazySpidey
Forum Replies Created
-
Forum: Reviews
In reply to: [Stealth Login Page] Useless..Please check any wordpress site from this adress:
http://wordpress.org/showcase/And try to access them with http://www.example.com/login
http://tv.msnbc.com/login
or
http://techcrunch.com/loginOr better..
Download the latest version of wordpress, install it, try yoursite.com/login with pluginless install..
Let’s talk again..
Forum: Reviews
In reply to: [Stealth Login Page] Useless..Ha ha ha!
There is no other plugin, i am using a vanilla wordpress!BTW that’s very bad to see that a ‘login’ plugin developer even doesn’t know that http://www.example.com/login function is a wordpress function-it’s not a plugin!
Forum: Plugins
In reply to: [Stealth Login Page] example.com/login is not hiddenThis is the worst answer that i received from a plugin developer. Actually your plugin doesn’t hide anything if anyone visits the site as example.com/login…
Which is worse, wordpress automatically displays the hidden URL in the adress bar to anybody!
Instead of thanking for finding such a bug (which makes your plugin useless), you tell me to switch plugins…
No worries, i have enough brains to try other plugins..
Thx for nothing..
Forum: Fixing WordPress
In reply to: Query_Posts and date function doesn't fork correctlyI found an easier way (for me)..
I put this in the loop:
<?php $postDateF = strtotime( $post->post_date ); $todaysDateF = time() - (time() % 86400); if ( $postDateF >= $todaysDateF) : ?>By this i can check if a post is today or after today 🙂
Problem solved.. Thx a lot..
Forum: Fixing WordPress
In reply to: Query_Posts and date function doesn't fork correctlyOK.. But what about post after a specific date? Sould;
$post_query = 'cat='.$cat1_id.'&posts_per_page=3&offset=1&year='.$current_year.'&monthnum='.$current_month.'&day>'.$current_day;work? (Noticed the “>” at the day variable?
Because it doesn’t 🙂
Forum: Fixing WordPress
In reply to: Query_Posts and date function doesn't fork correctlyWohooo!!! Thx alchymyth!!! Works like a charm..
For the ones who wants to query specific date (today’s) posts, can use the following code:
<?php $current_year = date('Y'); $current_month = date('m'); $current_day = date('j'); $post_query = 'cat='.$cat1_id.'&posts_per_page=3&offset=1&year='.$current_year.'&monthnum='.$current_month.'&day='.$current_day; ?> <?php query_posts( $post_query ); ?>Thx again!!
Forum: Fixing WordPress
In reply to: Query_Posts and date function doesn't fork correctlyWhat do you mean by that?