Joshua Sigar
Forum Replies Created
-
Forum: Themes and Templates
In reply to: title codePost the template/file where you want that title of post: http://pastebin.com
Is the theme WP 1.5 compatible? Is any other template tag working on the same page?
Forum: Themes and Templates
In reply to: title codeThe template tag to generate the title is the following.
<?php the_title(); ?>Forum: Fixing WordPress
In reply to: index with “other” page excerpt followed by postsWhat’s the second Loop supposed to do? Which Posts should show up there?
Forum: Fixing WordPress
In reply to: Two blogs in oneIt looks like that site displays by category. Either way, you’re gonna have to implement multiple loops.
http://codex.wordpress.org/The_Loop#Multiple_Loops_in_Action
http://codex.wordpress.org/Template_Tags/query_posts#Author_ParametersForum: Fixing WordPress
In reply to: Two blogs in oneWell, you could just have one blog and display by author. You wanna do that?
Forum: Fixing WordPress
In reply to: Has my site been hijacked?As An admin i respond to a post
You mean “comment?”Any installed comment-related plugin?
Forum: Fixing WordPress
In reply to: Feature StoriesSome example below.
http://codex.wordpress.org/The_Loop#Multiple_Loops_in_ActionForum: Fixing WordPress
In reply to: Page CodeIs there instruction how to install that code? You might want to hire someone to do it for you.
<?php
$year = date('Y');
$month = date('m');// last year:
$year--;
$posts = get_posts("numberposts=3&category=2&month=$monthnum&year=$year");
foreach ($posts as $post) :
setup_postdata($post);
?>
<a href="<?php the_permalink(); ?>"><?php the_excerpt(); ?></a>
<?php
endforeach; ?>
<?php
// two years ago
$year--;
$posts= get_posts("numberposts=3&category=2&month=$monthnum&year=$year");
foreach ($posts as $post) :
setup_postdata($post);
?>
<a href="<?php the_permalink(); ?>"><?php the_excerpt(); ?></a>
<?php
endforeach; ?>
Forum: Installing WordPress
In reply to: Made but Warning show up everywhere…Did you go and read the reference I linked to in my previous post?
Forum: Fixing WordPress
In reply to: Page CodeI recently bought marketing..
What kind of merchandise is “marketing?”…an attached copy of my new html code
What is it supposed to be? What will this new code do?Where do you want this “marketing” thingie to appear?
Forum: Installing WordPress
In reply to: Made but Warning show up everywhere…Forum: Fixing WordPress
In reply to: Counterize Not WorkingWhat’s “counterize?” You probably have to insert some code in the new theme?
Forum: Fixing WordPress
In reply to: Posts are displaying alphabetically instead of by dateSorry, I misread your post the first time. You just want one most recent post from category 1, right.
<?php
query_posts('cat=1&showposts=1');
?>Forum: Fixing WordPress
In reply to: seek help changing Blog AddressYeah, you need to redo the permalink.