Sparanoid
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Use query_posts to generate a specified posts list?Ha, I got it, sorry for my carelessness.
Forum: Fixing WordPress
In reply to: Use query_posts to generate a specified posts list?yes, I checked this document and my code is like:
<?php query_posts('p=1670,147,584,1516,1590,433,363,46'); if (have_posts()) : while (have_posts()) : the_post(); ?>
but it doesn’t work. I said they filed under different categories, different tags and authors, I cannot use parameter such as
cat=
to get the exact posts I want. so any good idea?Forum: Fixing WordPress
In reply to: Increment, continuous post IDThanks a lot, but this only works in normal post query. I mean, if it’s in a posts list of specified tag or category, the numbers are still messed up.
Forum: Plugins
In reply to: Is it possible to use the_ID with offsetedit: Well, the problem solved, It’s my mistake and your code is working now, thanks a lot!
Forum: Plugins
In reply to: Is it possible to use the_ID with offsetWell, in the Parameters section I’ve seen it can just output the post title with %title, i wonder how to output only the post id just like the_ID does?
Forum: Plugins
In reply to: [W3 Total Cache] [Plugin: W3 Total Cache] Font-face not working in FirefoxI have a solution that works but not perfect. That is you can encode your fonts into base64 in a single .css files. just like:
url("data:font/opentype;base64,ABCDE) format('opentype'),
It works for Firefox loading font-face fonts from cross domain.
It’s better to cache that file such as setting a further expire header and using gzip compression.
Forum: Plugins
In reply to: [Plugin: SharedItems2WP] Post Now Broken in 2.9I activated it sitewide on my WP MU site, after configurating, it returened a blank page when I pressed Run button to fetch my Shared items.
maybe i want a function like these:
https://codex.www.ads-software.com/Template_Tags/next_post
https://codex.www.ads-software.com/Template_Tags/previous_posti used these in version 1.5 and these codes worked well:
<link rel="next" title="Next Post" href="<?php next_post(); ?>"> <link rel="prev" title="Previous Post" href="<?php previous_post(); ?>">
but now they’re deprecated. so i want to find a replacement but the new functions don’t work when i use next_post_link and previous_post_link like that, any idea?
Forum: Fixing WordPress
In reply to: Make search result ordered by comments numbersanyone who can help?
Forum: Fixing WordPress
In reply to: /?tegory%/%postname%/ to show only parent (top level) category?anyone can solve it? i also want the permalinks like this
Forum: Fixing WordPress
In reply to: specified category use specified single pagei found it here:
https://codex.www.ads-software.com/Theme_Development#Query-based_Templates
hope someone would help, too
Forum: Fixing WordPress
In reply to: Need a function like “Recent posts in this category”anybody? i’ve searched the whole site but could not find the answer ??
Forum: Fixing WordPress
In reply to: How to show specified images for each post?ok, i made it from searching:
https://www.ads-software.com/support/topic/32894
sorry for my carelessness :(, Thanks all the same.
Forum: Fixing WordPress
In reply to: How to show specified images for each post?maybe not, the images are not uploaded by WordPress
so, in other words, i just want to know is there anyway to get the postslug just like
getPostSlug()
?Forum: Fixing WordPress
In reply to: Show total posts number in year/month/dayyeah, i tried it and now it works! great thanks! Viper007Bond, and also thanks for your great Quote Plugin!