cozmosis
Forum Replies Created
-
Forum: Plugins
In reply to: [Plugin: Tweetable] Tweet time timezone offsetHow do you change the timezone?
Forum: Fixing WordPress
In reply to: Help please!never mind! solved it thanks to WP Codex 😀
Forum: Fixing WordPress
In reply to: Dynamic Sidebar Problem<?php get_header(); ?>
<style type=”text/css”>
p {
margin:0;
}
</style><?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<div class=”post” id=”post-<?php the_ID(); ?>”>
<h1><?php the_title(); ?></h1>
<div class=”entry”>
<?php the_content(); ?>
<?php wp_link_pages(array(‘before’ => ‘<p>Pages: ‘,
‘after’ => ‘</p>’, ‘next_or_number’ => ‘number’)); ?>
</div>
</div><?php edit_post_link(‘Edit this entry.’, ‘<p>’, ‘</p>’); ?>
<?php comments_template(); ?>
<?php endwhile; ?>
<?php else : ?>
<h1>Not Found</h1>
<p>Sorry, but the page you requested cannot be found. If you feel this is an error, let me know.</p><?php endif; ?>
<?php get_footer(); ?>
that’s my page.php
Forum: Fixing WordPress
In reply to: Dynamic Sidebar Problemmy sidebar.php is reallllly long
Forum: Fixing WordPress
In reply to: Dynamic Sidebar ProblemMy home sidebar doesn’t contain any category include code, but because I have set sidebars for my categories they show up on my homepage when I post something relevant to said category.
Forum: Fixing WordPress
In reply to: Dynamic Sidebar Problemcan anyone help? D:
Forum: Fixing WordPress
In reply to: Dynamic Sidebar ProblemBump ^^
Forum: Fixing WordPress
In reply to: I Can’t Get Line Breaksif i can’t get my line breaks to work
<br />then i normally use
<br clear="none" />
works awesomely for me 😀