Sparanoid
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Show total posts number in year/month/dayi tried this but got nothing, why?
<?php $post = $posts[0]; // Hack
if (is_year()) {
$likedate = 'Y-';
} elseif (is_month()) {
$likedate = 'Y-m-';
} elseif (is_day()) {
$likedate = 'Y-m-d ';
}
$count = $wpdb->get_var("SELECT COUNT(ID) FROM $wpdb->posts WHERE post_date LIKE '" . get_the_time($likedate) . "%' AND post_date_gmt < '" . current_time('mysql', TRUE) . "' AND post_status = 'publish'"); ?> post(s) written in this month.Thanks moshu! now all problems are solved! Thanks a lot! here’s my demo: https://blog.sparanoid.com/archive/artworks/
anybody?
Forum: Installing WordPress
In reply to: Where to download 1.5?Forum: Plugins
In reply to: Quotmarks Replacer 1.0 beta – Convert all SBC quotation marks into DBC caseQuotmarks Replacer 1.0.3 beta release
https://www.sparanoid.com/2006/01/29/quotmarks-replacer/
What’s new in version 1.0.3 beta?
Error in converting multiple quotation marks. (Thanks to herllin)Forum: Installing WordPress
In reply to: Where can I get the older version of WordPress?thanks a lot
Forum: Plugins
In reply to: Quotmarks Replacer 1.0 beta – Convert all SBC quotation marks into DBC casehttps://www.sparanoid.com/blog/2006/01/10/quotmarks-replacer/
version 1.0.2 updated, New feature: Convert suspension points(…) into DBC case.
Forum: Fixing WordPress
In reply to: Search Questioni just found a plugin at:
https://wp-plugins.net/plugin/cruftless_searching/Forum: Fixing WordPress
In reply to: Is it possible to remove the ‘index.php’ from permalinks?Ok! I know my apache is not configured completeley.
i changed Options FollowSymLinks in my Apache httpd.config is just ok.
Forum: Fixing WordPress
In reply to: Is it possible to remove the ‘index.php’ from permalinks?No, i’ve installed correctly, and i can only view my post in such form: https://example/index.php/archives/abc/
I want to use https://example/archives/abc/ but it is unavailable.
Forum: Fixing WordPress
In reply to: Is it possible to remove the ‘index.php’ from permalinks?thanks for replying.
but i just read the notice in my admin:
For the above to work you must have something called mod_rewrite installed on your server. (Ask your host.) If that isna€?t available, you can prefix the structure with /index.php/ . This is the recommend method if you are on any web server but Apache.
How?