Anna
Forum Replies Created
-
Forum: Themes and Templates
In reply to: Moving the "reply to comment" linkBump? D:
Forum: Themes and Templates
In reply to: Get Latest Post from Category's Permalink?You can use query_posts for something like that.
posts_per_page is set to get the latest 1 post and cat=1 limits the post to being from that specific category.
<?php query_posts('posts_per_page=1&cat=1'); if ( have_posts() ) : while ( have_posts() ) : the_post(); .. endwhile; else: .. endif; wp_reset_query(); ?>
Forum: Themes and Templates
In reply to: Moving the "reply to comment" linkBump? =/
Forum: Themes and Templates
In reply to: Moving the "reply to comment" linkBump?
Forum: Requests and Feedback
In reply to: File upload suggestion!I think you can tell the gallery short code to default to the full sized image… Maybe.
You can! Codex page says use this code:
[gallery size="full"]
The main page of the plugin says your hook should be like this:
[categorythumbnaillist 3] (where 3 is a catego[r]y id)
Have you tried using the category ID instead of the slug?
Forum: Requests and Feedback
In reply to: I have to manually choose existing categoryMark:
I believe he’s looking for an easier way to place a post in a category as opposed to having to scroll the category box (filled with his 330 categories) to find and click on the category he wants.Forum: Networking WordPress
In reply to: Images broken after moveDid a broader search in the database and found that the “guid” field of the posts table had “new.domain.com”. Strange that it didn’t come up in the first place.
Also, I had to look for any inserted images and change “wp-content/uploads” to “files” ??
Problem solved~!
Thanks for your time ipstenu ??
Forum: Networking WordPress
In reply to: Images broken after moveThe database itself.
Forum: Networking WordPress
In reply to: Images broken after moveHey there ipstenu.
I did a search and replace on all tables but it says no results found.
Forum: Networking WordPress
In reply to: Enter Akismet key for each site? Really?@tdjcbe: Thanks for the warning. Luckily, none of my sites fall under the statement below (found at the personal page of Akismet).
If you are a commercial entity or if you are making more than $500 from your personal blog, please get a commercial key instead.
Forum: Networking WordPress
In reply to: Enter Akismet key for each site? Really?+1 to this.
I would love for someone to post a solution or perhaps have this included as a(n optional) feature for a future WP update.
Forum: Themes and Templates
In reply to: How to get post page number?Ah, those look perfect! I will test them in just a few.
Thank you very much!
Forum: Themes and Templates
In reply to: How to get post page number?Thanks for taking the time to respond!
I am using wp_link_pages right now to display the “<<” and “>>”.
What I am asking is if it is possible to display the current page number and the total number of pages through some PHP snippet or some sort?
I don’t mean the available options of “1 2 3 4 5 6” or “Page 1, Page 2, Page 3, Page 4, Page 5, Page 6” or “Page 1, 2, 3, 4, 5, 6” or any variations available through styling of the wp_link_pages function because I don’t want to list all the pages. Only the current page you’re at and the total number of pages.
Sorry if I didn’t explain it as properly as I would like.
Forum: Requests and Feedback
In reply to: Too many plugins!+1 for this.
They could create an archive section of the repository where plugins that haven’t been updated in over 6 months (or 1 year) could be automatically moved into.*
Then any searches performed for plugins would not get from this archive section unless specifically set by the user.
*Special exemptions for plugins that are proven to work with any version of WP.