Joshua Sigar
Forum Replies Created
-
Forum: Themes and Templates
In reply to: Unwanted extra space above first entryOh, no my bad. I made mistake. Okay here’s your original style.
.post { margin: 35px 35px 20px 0; }1st = top
2nd = right
3rd = bottom
4rd = leftMake values adjustment again.
Forum: Themes and Templates
In reply to: how to post author?Is it not this one?
http://codex.wordpress.org/Template_Tags/the_author_posts_linkForum: Fixing WordPress
In reply to: How to Change page #s in wordpress?Make sure you make complete change. That post ID is attached to category and comment.
Forum: Fixing WordPress
In reply to: Private postsYou have to use phpmyadmin to run that query/command. Go to the database where you have WP, click on SQL tab, and paste the code to something like “Run QL Query” textbox and hit “Go”
Forum: Themes and Templates
In reply to: Unwanted extra space above first entryAdjust the value of the following in style.css
.post { margin: 35px 35px 20px 0; }1st number = top margin
2nd number = bottom marginForum: Fixing WordPress
In reply to: posting from another WP installation?Wanna take a look at the following plugin
http://projects.radgeek.com/feedwordpressForum: Themes and Templates
In reply to: headerForum: Fixing WordPress
In reply to: Dynamically changing body id for pages?The solution for the issue for this thread is in the 2 posts above yours.
The code goes, usualy, to header.php where the opening tag for
<body>isForum: Fixing WordPress
In reply to: Take the date off a page?Do you have page.php in the theme folder?
If you don’t, just copy index.php and rename it to page.php
In index.php, find and delete something like
the_date() or the_time() and
comments_popup_link() and
comments_template()Forum: Fixing WordPress
In reply to: CMS – Ordering PagesTry this.
<?php $parentId = get_query_var( 'page_id' ); ?>
<?php wp_list_pages( 'child_of=' . $parentId );Forum: Fixing WordPress
In reply to: How to list pages in ascending order on sidebarOh the order supposed to be asc
<?php $my_query = new WP_Query('order=asc&orderby=post_id&cat=2&posts_per_page=-1'); ?>Forum: Fixing WordPress
In reply to: How to list pages in ascending order on sidebarTry this for the query.
<?php $my_query = new WP_Query('order=desc&orderby=post_id&cat=2&posts_per_page=-1'); ?>Forum: Installing WordPress
In reply to: all my posts become “not categorized”!Nope. Just do another clean install.
Forum: Fixing WordPress
In reply to: CMS – Ordering PagesYou could incorporate something like the following.
<?php wp_list_pages( 'child_of=' . $post->ID );Forum: Fixing WordPress
In reply to: puttink links and excerpts on static pageRead this up ASAP
http://www.transycan.net/blogtest/2005/07/05/integrate/