vsp
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: links to Year archives in the sidebari dont want to install it without knowing exactly what it does. can you explain?
Forum: Fixing WordPress
In reply to: Custom fields unsearchableany more ideas?
Forum: Fixing WordPress
In reply to: Enable commenting in one category only?bump?
Forum: Fixing WordPress
In reply to: grab the latest title from a category to put on the front page?the first post didn’t help me… does anyone have any other ideas?
Forum: Fixing WordPress
In reply to: Buttons from Hellit’s not working well in my Firefox, by the way.
Forum: Fixing WordPress
In reply to: display custom field in a div?In case anyone has any interest in the solution to this problem, I fixed it by separating out the code. Not an elegant solution, but it works:
<?php
$custom = get_post_custom_values('Box');
if (count($custom) != 0)
{
echo '<div class="superbox">';
} ?><?php
$custom = get_post_custom_values('Box');
if (count($custom) != 0)
{
echo $custom[0];
} ?><?php
$custom = get_post_custom_values('Box');
if (count($custom) != 0)
{
echo '</div>';
} ?>Forum: Fixing WordPress
In reply to: simple question: how to delete draftsoops. delete thread.
Forum: Fixing WordPress
In reply to: simple question: how to delete draftsI’m viewing a draft in the post editor, and i dont see a button to delete it.
Forum: Fixing WordPress
In reply to: Custom fields unsearchabledamn, that didnt work either
Forum: Fixing WordPress
In reply to: Custom fields unsearchablethanks, but unfortunately that only works with version 1.5. i tried manually editing in the code and it gave my site an error. is there anything else that might work?
Forum: Fixing WordPress
In reply to: display custom field in a div?the PHP is in the source code, none of the text in the box is there. im usign get_post_custom_values for other stuff, so i know it works
Forum: Fixing WordPress
In reply to: display custom field in a div?I’m having the same problem with that code – it’s displaying the box, but none of the text inside it.
Forum: Fixing WordPress
In reply to: display custom field in a div?I got the following code to work in the sense that a div shows up if there is the Box custom field on that post, but it’s not displaying the custom field text in the box. Any ideas? Here’s the code:
<?php
$custom = get_post_custom_values('Box');
if (count($custom) != 0)
{
echo '<div class="superbox"><?php echo $custom[0]; ?></div>';
} ?>Forum: Fixing WordPress
In reply to: Latest post on index page?Excuse me? That’s a completely valid answer for someone who might want to create an index page that has WordPress integrated content as well as other, static pieces of content. Are you telling me that’s not true? He could easily import a non WP page into WP and retain all the content he has on it now. Your response is unnecessarily rude.
Forum: Fixing WordPress
In reply to: Latest post on index page?