Joshua Sigar
Forum Replies Created
-
Forum: Installing WordPress
In reply to: how do i add multiple stylesheets for a themeHow do you reference the image in images.css? Is other styling in images.css applied to the page? In other words, does everything else work except the images won’t show up?
Do you have a link for this site, with the modification applied?
Forum: Fixing WordPress
In reply to: Inserting Schedule into pageCreate a custom Page Template, insert the appropriate html code from class_schedule.html and assign this Page Template for page id 4.
Forum: Fixing WordPress
In reply to: Posts are displaying alphabetically instead of by dateThere’s some example here.
http://codex.wordpress.org/Alphabetizing_PostsForum: Installing WordPress
In reply to: diferent css for diferent monitor resolutionSome javascript code is needed to detect the current resolution and import the appropriate stylesheet. Google it.
Forum: Fixing WordPress
In reply to: suspendedworking fine for me on firefox 1.0.6 winXP
Forum: Themes and Templates
In reply to: Show post summeryThe post excerpt is generated wth the following template tag
<?php the_excerpt(); ?>The link to full post is generated with the following template tag
<?php the_permalink(); ?>Forum: Fixing WordPress
In reply to: How to enable users to comment freely?Go to Options -> Discussion; all the options to adjust should be there.
Forum: Fixing WordPress
In reply to: Processing line breaks in Pages like in Posts?What plugins do you use?
Do you have link to the website?Forum: Fixing WordPress
In reply to: Ading code only in homepageDepends. If you have multi-file theme (index.php, single.php, page.php, etc) you could just add the code in index.php
If you have only index.php as template for everything then you add the code in index.php but enclose it within a conditional statement.
<?php if( is_home() ) { ?>
// stuff that only takes effect in frontpage
<?php } ?>
Forum: Fixing WordPress
In reply to: Troubleshoot my Recent Posts From 1 Category<?php /* If this is the frontpage */if ( is_home() || is_page() ) { ?>
<li><h2>3 Recent Radio Setlists</h2>
<ul>
<?php
$posts = get_posts('numberposts=3&category=2');
foreach ($posts as $post) :
setup_postdata($post);
?>
<li><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></li>
<?php
endforeach; ?>
</ul></li>
<?php } ?>
</ul>
</div>Forum: Installing WordPress
In reply to: Comment PluggerDiagnose the comment-plugger.php with the following instruction.
http://codex.wordpress.org/Answers-Trouble_Shooting#Headers_already_sent
Forum: Fixing WordPress
In reply to: Processing line breaks in Pages like in Posts?The content of Post and Page are treated the same by WP, as far as I know.
Is this not CSS-related issue? Check the source code and see if the paragraph tags are inserted or not.Forum: Installing WordPress
In reply to: Comment PluggerLogin to admin panel, go to “Plugins” where you’ll get a list of available plugin. Find the one you want to activate and click on the corresponding “Activate” link.
Forum: Installing WordPress
In reply to: Comment PluggerHave yo activated the plugin?
Forum: Themes and Templates
In reply to: stylesheet_url where to define ?Just hardcode additional styles in the theme.