Joshua Sigar
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: WP2 with old style previewIt seems that there is a bug in regard to
is_preview()
http://trac.wordpress.org/ticket/2188Forum: Fixing WordPress
In reply to: Custom Fields (not showing on index but is elsewhere)There is no
the_meta()in that file you pasted.Forum: Fixing WordPress
In reply to: Custom Fields (not showing on index but is elsewhere)Disable all plugins. Do they appear now?
Post your index.php on the following site.
http://pastebin.comForum: Plugins
In reply to: Custom Field Data IntergrationI detest the dollar symbol ($) in the keys, NOT the prefix
wp_.You have to echo it.
echo get_post_custom_values('lovable_key')Check the database. Are those custom fields stored?
Do you use that piece of code inside the Loop?
Forum: Plugins
In reply to: Custom Field Data IntergrationYou mean
$wp_source_hrefand$wp_source_nameare not PHP variables??If they’re keys, then here’s how you do it.
get_post_custom_values('$wp_source_name')By the way, why didn’t you name them
wp_source_hrefandwp_source_name?Forum: Plugins
In reply to: 2-column archivessomething like the following?
Post 1 Post 2
Post 3 Post 4What will the archive contain? All posts in one long page? ?
Forum: Themes and Templates
In reply to: More conditional tags?I could only suggest that you look at the source code.
Forum: Plugins
In reply to: Custom Field Data Intergration$wp_source_hrefand$wp_source_name–what are those initialized to?Forum: Fixing WordPress
In reply to: short postIf you have the template file
archive.phporcategory.php, find the instance of the following template tag.the_excerpt()Replace it with the following.
the_content()Forum: Fixing WordPress
In reply to: index.php – single category hack?If you want to display Posts of certain categories on the frontpage, download the following plugin (probably more updated version). The instruction is in the file.
http://dev.wp-plugins.org/file/front-page-cats/trunk/front_page_cats.php?rev=57&format=rawForum: Fixing WordPress
In reply to: categoryEverything seems to be working like I expected. You need to describe the issue again.
Forum: Fixing WordPress
In reply to: WP2 with old style previewYou could add the following logic in the template file that invokes the counter.
<?php if (!is_preview()) : ?>
<!-- insert your counter code here -->
<?php endif;?>Forum: Themes and Templates
In reply to: Get category and date archives to display all posts?The following is probably a more robust plugin.
http://mattread.com/projects/wp-plugins/custom-query-string-plugin/Forum: Fixing WordPress
In reply to: categoryI don’t understand what you’re trying to say. Please rephrase it in details. (Link to the problematic site will always be helpful.)
Forum: Themes and Templates
In reply to: Custom category list with post titlesTry the post below and modify it to loop all post’s categories.
http://wordpress.org/support/topic/50315?replies=22#post-276457