Joshua Sigar
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: change wordpress directoryWithout physically moving the files, you could do what is prescribed below.
http://wordpress.org/docs/installation/different-address/Forum: Plugins
In reply to: Output BufferingThanks.
Forum: Plugins
In reply to: Category icons in sidebarOf course, the above code won’t display any icons. You still need to call the icons via CSS.
Forum: Plugins
In reply to: Category icons in sidebarA quick glance on the code…
1. Find the following line in function get_the_category_list()
$thelist .= “\n\t<li>“;2. Replace the above line with the following
$thelist .= ‘\n\t<li id=”$category->cat_name”>’;3. Backup (Oopps. Too late!)
Forum: Themes and Templates
In reply to: adding wordpress themes to all your site..?Do you already have the static html? If so, just include
wp-blog-header.phpin that html file. See below.
<?php require ('/path/to/wp-blog-header.php'); ?>
<?php get_header(); ?>
content goes here
<?php get_sidebar(); ?>
<?php get_footer(); ?>
?>
Or if you just starting adding the pages, you may want to make a WP Page http://codex.wordpress.org/Pages
Forum: Plugins
In reply to: Admin site map on DashboardSo, the actual problem is how to convert the array of menus to HTML list? If so, the solution is to learn PHP esp. array and loop, correct?
Or what is it that you’re asking? The coding done for you?
Forum: Themes and Templates
In reply to: Fixed positioning in IEFrom the post on your site:
I know IE doesn’t support fixed positioning and I’ve tried a few of the different work-arounds I found around the internet. It looks better, but not the way I would like it to.
What do you mean by “not the way I would like it to?”
Can you link me up to all those resources?Forum: Plugins
In reply to: Help with signature neededJust place the appropriate template tags inside the Loop.
<?php the_author(); ?>/*for author */<?php the_time(); ?>/* for datetime */I am in preschool,
Are you teaching or go to school there??Forum: Fixing WordPress
In reply to: WordPress Content OUTSIDE Giving IndexDont use the following line
define('WP_USE_THEMES', true);Forum: Themes and Templates
In reply to: Adding Calendar and Recent postsStyle template? which one is that? It goes to
index.php. Just one line for the calendar.<?php get_calendar(); ?>How did it not work out for you? What did you get? What output?
Forum: Themes and Templates
In reply to: Adding Calendar and Recent postsThe template tag to display the calendar is below.
http://codex.wordpress.org/Template_Tags/get_calendarAnd follows is a plugin to display recent post
http://www.coffee2code.com/archives/2004/08/27/plugin-customizable-post-listings/Forum: Themes and Templates
In reply to: theme switcher doesn’t work in firefoxScreenshot of both theme from my side
http://www.rhymedcode.net/alphaoide/misc/paula.jpgForum: Fixing WordPress
In reply to: wp-comments-post.php won’t loadDoes the comment still get posted, though?
Forum: Themes and Templates
In reply to: theme switcher doesn’t work in firefoxI compared them side by side; they’re different comment template. Can you give us screenshot from your side. Did you try *strong* refresh?
Firefox 1.0.4
Forum: Themes and Templates
In reply to: theme switcher doesn’t work in firefoxLooks fine from my side, too.