ranji77
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Using wp_get_archives to filter by year?Esmi,
Thanks again for posting a suggestion, I really appreciate it.
However, this doesn’t answer my initial problem. I need it to output just archive links to specific months of a year, not individual posts. Here’s an illustrated example:
(say I have separate unordered lists for each year, bold text are the archive links)
2011:
—January 2011
—February 2011
—March 2011
—etc.2010:
—January 2010
—February 2010
—March 2010
—etc.Again, <?php wp_get_archives(‘type=monthly’); ?> works except it doesn’t allow me any way to distinguish what year to use. It will literally spit out 40 months long going back over 3 years for each of my unordered lists. I’m looking for a function that will only output monthly archive links for a specific year that I can place under each of my lists.
<ul>...archive function here...</ul>
I hope this makes more sense. Thanks again.
Forum: Fixing WordPress
In reply to: Using wp_get_archives to filter by year?Thank you for the reply, however after reading both those pages it’s still confusing to me. I’m naturally a designer so some of these backend commands are difficult for me to grasp.
What I’m using now is simple enough <?php wp_get_archives(‘type=monthly’); ?> but it returns months from every year that posts were published.
I only want something that spits out months of a specific year. I tried doing something simple like:
<?php $test = query_posts( ‘year=2011’ );
echo $test
?>but it returns “Array”. Obviously I don’t know what I’m doing here lol. Can you provide a little more help, would be greatly appreciated!
Forum: Fixing WordPress
In reply to: All my entries have suddenly changed to 'uncategorized'ok, this is really weird but it somehow just reverted back to normal by itself. I swear in the WP console all my posts had uncategorized in the categories column, and now they magically appeared back. I didn’t even do anything. I guess chalk this up as a web host issue?
Mitcho, any way to fix this in the short-term until a new official release of 3.2 comes out? I did what stormy did above and tried to roll back to YARPP 3.19. But now, every single one of my posts say “No related posts”
I am getting the same exact error for posts with no related entries. Posts that have related entries seem to be working.
Lines 287, 27 and 54 on magic.php seem to be the issue.
Not cool…
Forum: Fixing WordPress
In reply to: Getting Post ID outside of loop keeps returning Page IDwell, for whatever reason when I just use $post->ID it works. So nevermind
Forum: Fixing WordPress
In reply to: Conditional statement for register pageThanks Thejas, but I don’t want to redirect my register page to the normal login page. I’m just looking to do some conditional statements so I can change the title headers from “Login” to “Register”. Since they are both technically using the login.php template I have created, I can’t differentiate between the two.
Forum: Fixing WordPress
In reply to: Conditional statement for register pagelast bump, promise…really hoping someone would know this though.
Forum: Plugins
In reply to: [Theme My Profile] [Plugin: Theme My Profile] Redirect After UpdateDid you make sure your Page ID is set to the correct page in the settings? The page that has the [theme-my-profile] shortcode.
Add me to the list of people who would like to see some option to paginate a users favorite post list.
I have users who favorite a large quantity of posts. I can foresee them scrolling all too much to get through their favorites list.
Thanks, love this plugin!
Forum: Fixing WordPress
In reply to: Conditional statement for register pagebump, please anyone know?
Forum: Fixing WordPress
In reply to: Need suggestions for user registration (plugins?)Thanks for the quick reply wpbum.
Do you know if this is the only way to register users through wordpress? I like the ease of use it appears to be, but honestly I’d rather re-skin a registration screen to fit the look from the site rather than the generic wordpress login screen.
I’m not sure if I would give users any roles, but I only want to have them “favorite” or save a post.
Forum: Fixing WordPress
In reply to: Managing the same custom field onto one pageanyone? ??
gah. I always do this. Ask a question then just realize my mistake a few minutes later. Anyway, I “fixed” the issue. There seems to be a discrepancy between https://www.mysite.com/feed/ (correct) and https://www.mysite.com/feed/rss/ (which I was using initially). They both looked the same and only showed the excerpt in the browser…
The trick is to just view the source code, I realized /feed/rss/ didn’t have my remaining post text whereas /feed/ had it in the source, even though on screen it was only spitting out the excerpt as well. So for anyone else having this issue, I suggest just viewing the source code!
I noticed your feed has the entire full post now. Any idea how you fixed it, I have the same exact issue where only excerpts are showing in my feed, even though I have “full text” selected.