Joshua Sigar
Forum Replies Created
-
Forum: Themes and Templates
In reply to: Can I change ‘Pages” headingDepending on parameter passed to the template tag, the heading “Pages” could have been auto generated. Read the following to specify your own.
http://codex.wordpress.org/Template_Tags/wp_list_pagesForum: Fixing WordPress
In reply to: Dreamhose and get_home_path()What do you need to use it for? Is it wordpress related?
Forum: Themes and Templates
In reply to: Page for “Home” in sidebarThe following will give you link to home
<a href="<?php echo get_settings('home'); ?>">Home</a>Forum: Fixing WordPress
In reply to: Re-connect to WP databaseJust use the function select() of wpdb to switch db, I guess.
Forum: Themes and Templates
In reply to: text aligned wrong in ieAdd the following in your CSS file.
table {
text-align: left;
}Forum: Themes and Templates
In reply to: Automating theme creation with NvuCan Nvu render php? I mean how do layout the site without knowing the output?
I’ve been hearing people layout wordpress with Dreamweaver. How does that work? Do they insert dummy content?
I’ve never used this sort of tool, so, sorry for my ignorance.
Forum: Fixing WordPress
In reply to: Two archives, one pageYou might want to look up how to use iframes/frames, so you’ll have one file main-archive.php contains two files: textblog-archive.php and photoblog-archive.php.
This is just a theory, by the way, since I don’t really know how iframes/frames work.
Forum: Fixing WordPress
In reply to: I accidentally deleted the default time formatThe one in admin panel, right? It’s below.
g:i a
Forum: Fixing WordPress
In reply to: Filter post contentI have downloaded Dougal’s pirate filter (so very cool! :)), but it seems to only work on a per-post basis
It means that you could disable/enable for each individual post, instead of automatically applied to all posts.
There’s also another plugin
http://www.coffee2code.com/archives/2004/06/29/plugin-text-replace/Forum: Fixing WordPress
In reply to: Missing First PostIn post.php, delete the following line.
<?php endwhile; ?>Forum: Fixing WordPress
In reply to: Missing First PostOkay, then, give the latest, frozen version of the files.
Give me three separate links to pastebin.com for index.php, fpost.php, and post.phpForum: Fixing WordPress
In reply to: Missing First PostIn that FILE: http://pastebin.com/312165 , just delete the following extra loop(!)
The start:
<?php if (have_posts()) : ?>
<?php while (have_posts()) : the_post(); ?>The ending:
<?php endwhile; ?>
<?php endif; ?>Forum: Fixing WordPress
In reply to: Missing First PostHmm, in index.php you have…
start loop
include FILE
end loopNow, what’ s the content of FILE? Here…
start loop
do stuff
end loopGo back to index.php, replacing FILE with its content.
start loop
start loop
do stuff
end loop
end loopForum: Fixing WordPress
In reply to: Missing First PostSo, the file contains another loop??? So, you have a loop inside a loop (a nested loop)?
Explain, please…
(unless you have no clue, then say so)Forum: Fixing WordPress
In reply to: adding a line of MyBlogLog.com (stats) code… where?There’s no html in wordpress because of its dynamic-content nature.
For most theme,
<body>will be located inheader.php,</body>will be located infooter.php, or both tags could be inindex.php