kt83
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Is my RSS done correctly?i notice on some sites, the rss link takes you to a feedburner page where you get to select which feed reader to use etc. what’s the advantage and point of that when a simple feed link is sufficient?
Forum: Fixing WordPress
In reply to: Is my RSS done correctly?thanks!
Forum: Plugins
In reply to: Need a Plugin That Allows Admin to Create Foldershow is Nextgen an overkill? Are the unneeded features gonna give me headaches?
Thanks for the replies!
Forum: Fixing WordPress
In reply to: Blog will not accept anyone’s comments!Ok, I figured it out. Son of a b*! I had post dated comments and that disabled the commenting. You can post date article publish dates but not comment dates! problem solved!
Forum: Plugins
In reply to: Need a photo gallery with sub-categories!Or does anyone know of a plugin that allows admin to create separate folders to put photos in???
Forum: Everything else WordPress
In reply to: WordPress forum is unfriendly!I take it back. I found the ultimate solution from a friend, but you guys have been helpful! Thanks!
Forum: Everything else WordPress
In reply to: WordPress forum is unfriendly!UPDATE:
This is what my home.php file looks like:
[code]<?php
$tpl = new template;
$tpl -> Load("!theme/{$GLOBALS["THEME"]}/templates/home.tpl");
$tpl -> GetObjects();require_once("home/www/sitename/blog/wp-config.php");
$recentPosts = recent_posts();
$recentComments = get_recent_comments();
$tpl -> AssignArray(array('recent.posts' => '$recentPosts'));
$tpl -> AssignArray(array('recent.comments' => '$recentComments'))
$tpl-> CleanZones();
$tpl -> Flush();?>[/code]
And inside my home.tpl file, I have, in two different divs, {recent.posts} and {recent.comments}
On the page, the recent_posts and recent_comments appear before all the content and in the div where I placed {recent.posts}, appears $recentPosts and {recent.comments} appears $recentComments.
I tried it without the ‘ ‘ around $recentPosts and $recentComments, but nothing came out.
Hope you can figure this out. Thanks for your help!
Forum: Everything else WordPress
In reply to: What’s my user account name?Thanks. I’ll check with them.
Forum: Installing WordPress
In reply to: How to create a feed that lists the latest blog entries?This is how my site works:
I have a home.php file which has the following codes:
<?php
/* Check Structure Availability */
if (!defined(“CORE_STRAP”)) die(“Out of structure call”);$tpl = new template;
$tpl -> Load(“home”);$tpl-> CleanZones();
$tpl -> Flush();?>
Then I have a home.tpl file which has the html for the content. Let’s say I want to place the output of the plugin in the middle of my content area, how would I do that?
Thanks, again.
Forum: Everything else WordPress
In reply to: WordPress forum is unfriendly!This is how my site works:
I have a home.php file which has the following codes:
<?php
/* Check Structure Availability */
if (!defined(“CORE_STRAP”)) die(“Out of structure call”);$tpl = new template;
$tpl -> Load(“home”);$tpl-> CleanZones();
$tpl -> Flush();?>
Then I have a home.tpl file which has the html for the content. Let’s say I want to place the output of the plugin in the middle of my content area, how would I do that?
Thanks, again.
Forum: Everything else WordPress
In reply to: What’s my user account name?Hey Clayton!
I found this code online:
<?php require_once(“/home/useracct/public_html/wordpress/wp-config.php”); ?>
in this case, what’s my /useracct/? is it the “(sitename) blog” that I see at the top left of my dashboard?
Forum: Everything else WordPress
In reply to: WordPress forum is unfriendly!Clayton, I’m glad you considered the off chance because those 2 articles were the help I was looking for. However, I use templates for my pages, which means my html and php are coded in separate files. I’m not sure if this is an uncommon way to create pages, but most people don’t seem to know how to apply the same codes to the template system. Would you happen to know of another article that might help? Thanks!
Figaro, I also noticed the same thing. Now I know what the title of all my posts are gonna be from now on.
Forum: Installing WordPress
In reply to: How to create a feed that lists the latest blog entries?Hey, thanks for the reply.
What I mean is, I want to be able to display a list of my latest blog entries on a page that isn’t WP driven, such as my homepage. I already installed “recent posts”, which generate and displays the list in my sidebar, but what I want to do is put that list outside of the WP Blog. Is that possible?
Forum: Everything else WordPress
In reply to: WordPress forum is unfriendly!Clayton, that instruction only shows me how to display the ‘recent posts’ somewhere in the blog. What i’m looking for is a solution to display the ‘recent posts’ on my homepage, or any page that isn’t WP driven. Thanks though.
Felix, I am not php literate enough to know if that article is the solution. What I’m hoping to find is a generic code that I could paste into my homepage file. I’m not sure if I’m conveying my thoughts clearly enough. You now what I’m trying to do right? Thanks for the link though.
Forum: Everything else WordPress
In reply to: WordPress forum is unfriendly!This is good, but it’s not quite what I’m looking for. Maybe it’s not a feed that I need… Thanks though.
I installed the plugin “Recent Posts” and have set it up to display a list of the most of recent posts in my sidebar. What I want to do is place this list on my homepage. Is this possible?
Thanks.