radiantstatic
Forum Replies Created
-
Forum: Hacks
In reply to: How to combine Article and Comment RSS feeds into one?Looked around for something like this as well (a lifestream pulling all my posting activity across multiple platforms) and ended up having to code something up myself.
Just Googling, perhaps something like this would be of importance to you –
Consider pulling the feeds from both your sources, combining them, and spitting them out.
Forum: Themes and Templates
In reply to: php menu for multiple wp installations?Why do you have 3 instances of WordPress running? Can your pages not all be managed from one installation?
In a normal installation, you could just edit the header.php template file and it would affect all of your pages.
But you might consider looking into using an include: http://php.net/manual/en/function.include.php
Forum: Plugins
In reply to: Recent post or SRP widget- specified autor's post tite with custom CSS classIf this is occurring in a widget, then you need to find the widget function and manipulate the output.
Forum: Plugins
In reply to: Display post after certain timestamp (not schedule post)What if you created a custom post field with the current time/date? You can check if it’s set or not. If not, post normal. If so, include different timestamp. That way you can still use the delayed publishing features wordpress offers.
Forum: Plugins
In reply to: [Simple Portfolio] [Plugin: Simple Portfolio] Creating the PHP filesThis plugin requires additional files to operate according to it’s Usage section and the author of the plugin has asked that you take a look at all the documentation before attempting. That being said, I’ll try and explain what they are asking for.
The author of the plugin has created a seperate function that acts like the index page and perhaps a single.php page. The ‘portfolio.php’ file will consist of the default wordpress loop which returns or aggregates all you portfolio related posts. ‘single-portfolio.php’ will act as you ‘single.php’ for each and every project you post.
In order for you to really get the results you are looking for I would consider going over the WordPress Documentation regarding both ‘The Loop’ and the functions behind the pages you want to create. It’s a little more work, but significantly more beneficial.
Here’s some stuff to take a look at.
http://codex.wordpress.org/The_Loop
http://codex.wordpress.org/Theme_DevelopmentForum: Plugins
In reply to: Recent post or SRP widget- specified autor's post tite with custom CSS class$myAuthor = the_author(); // set author name if (is_author('Username')) { // if 'username', change div class echo '<div class="alternate">'.$myAuthor.'</div>'; } else { //or else display regular echo '<div class="regular">'.$myAuthor.'</div>'; }Forum: Plugins
In reply to: Recent post or SRP widget- specified autor's post tite with custom CSS classHave you looked at this – http://codex.wordpress.org/Function_Reference/?