RogerUsh
Forum Replies Created
-
Forum: Plugins
In reply to: Recent Posts for a non-WP php pageCouldn’t get this to work, am I entering it in correctly with my folder structure?
http://imagebaker.com/posts/ (WP root directory)
http://imagebaker.com/index.php (file I want to include WP functions)
<?php
define(‘WP_USE_THEMES’, false);
require(‘./posts/wp-blog-header.php’);
?>I also tried
<?php
define(‘WP_USE_THEMES’, false);
require(‘http://imagebaker.com/posts/wp-blog-header.php’);
?>I also should mention that I am trying to get these functions to work with folderblog v2.02
Thanks
Forum: Themes and Templates
In reply to: Very simple sidebar wanted – non-indentedGo to your style.css file, if you study it you’ll notice that it’s split into sections. Find the section’Begin Lists’ and look for:
#sidebar ul ul, #sidebar ul ol {
margin: 5px 0 0 10px;
}Change the ’10px’ to ‘0’ – that should get rid of the indent.
To remove the » in front of the list items, under the same section look for:
.entry ul li:before, #sidebar ul ul li:before {
content: "0BB 020";
}and remove the ‘content’ parameter.
If you want to edit css I suggest you get the firefox developer extension here. I had no idea until my brother clued me in on it, but after learning how to use that, figuring out css has been like coming out of the dark ages.
Good luck!
Forum: Fixing WordPress
In reply to: Removing » from sidebarFound it:
stle.css [list section]
.entry ul li:before, #sidebar ul ul li:before {
content: "0BB 020";
}Remove the content parameter.
Thanks me π
Forum: Fixing WordPress
In reply to: Posts_nav_link now won’t show upI’ve been having a problem with post_nav_link myself, though I don’t know if it is the same problem. When I click on the “previous posts” link, it just gives me a “page not found”.
I tried everything I could think of, I even reinstalled WP with a clean database, and for some reason that worked for 2 seconds, and then the same problem showed-up again.
I haven’t changed anything other than the template files. If anyone has an idea what might be causing this problem I would greatly appreciate it.
You can checkout the link at:
http://imagebaker.com/posts/Thanks.
Forum: Fixing WordPress
In reply to: Help with page navigation linksI think the problem may have been within the database, I did a clean install, deleting the original database, and it ironed things out.
Thanks.
Forum: Fixing WordPress
In reply to: Help with page navigation linksWell what I did was I went to this link:
http://imagebaker.com/wp-admin/options.php?update=1
and under the what_to_show field I entered “posts paged”.
This made the ‘previous entries’ link work, but it scrambles the posts somehow (look at the dates), plus it just goes on for infinity continuing to create page directories:
http://imagebaker.com/page/1/
http://imagebaker.com/page/1/
http://imagebaker.com/page/2/
http://imagebaker.com/page/3/but the content remains the same.
Now if I enter just “posts” into the what_to_show field it still brings up the 404 error.
Not too sure what to do. I even looked into the template-functions-links.php file, but the php has got me licked.
I’ve been stuck on this for a few days now, any help would be greatly appreciated.
Forum: Fixing WordPress
In reply to: Problem with “the_excerpt” tagOh wait I remember what I did. The “the_excerpt” tag doesn’t ave any parameters, I got the excerpt to link to the post by manually inserting an href in the excerpt. I need to change the link for the post. Sorry, I needed that to jog my memory though.
Thanks.
Forum: Fixing WordPress
In reply to: Problem with “the_excerpt” tagI’m sorry, I should have posted this link:
Forum: Fixing WordPress
In reply to: Problem with get_month_linkAwesome! Perfect, worked like a charm.
Thanks a ton.
Forum: Fixing WordPress
In reply to: Moving WordPress to Another FolderYou’re right, when I was looking for an easy way to do it I couldn’t find it, and now after I’ve done it it’s right there. The irony is killing me.
Thanks.