funkton
Forum Replies Created
-
Thanks.. But i have checked the 2010/12 folder and nothing is there??
Any ideas why??within 20 mins its gone…
Forum: Fixing WordPress
In reply to: Displaying a Custom Field in a PageYes it did!
I did this
<?php if (have_posts()) : ?> <?php while (have_posts()) : the_post(); ?> <!-- do stuff ... --> <p> <?php echo get_post_meta($post->ID, 'TextBox', true) ?> </p> <p> <?php echo get_post_meta($post->ID, 'TextBox2', true) ?> </p> <p> <?php echo get_post_meta($post->ID, 'TextBox3', true) ?> </p> <p> <?php echo get_post_meta($post->ID, 'TextBox4', true) ?> </p> <p> <?php the_time('l, F jS, Y') ?> </p> <?php endwhile; ?> <?php endif; ?>
Forum: Fixing WordPress
In reply to: Displaying a Custom Field in a Pagehow do i remove the name of the custom field from displaying?
Forum: Fixing WordPress
In reply to: Displaying a Custom Field in a Pagegot it!!
<?php if (have_posts()) : ?> <?php while (have_posts()) : the_post(); ?> <!-- do stuff ... --> <?php the_meta(); ?> <?php the_time('l, F jS, Y') ?> <?php endwhile; ?> <?php endif; ?>
excellent thanks!
Forum: Fixing WordPress
In reply to: Displaying a Custom Field in a Pagewhat just the
<p> <?php the_meta(); ?> </p>
bit??
Forum: Fixing WordPress
In reply to: Basic Home PageExcellent!
Thanks!
I did the following<?php /* Template Name: Whatever */ ?> <html> <head> <title>Demo Template</title> <link rel="stylesheet" href="<?php bloginfo('stylesheet_url'); ?>"> </head> <body> <div id="wrapper"> <div id="photo"> <img src="HannahDeCanchoGREEN.jpg" alt="Klematis" width="300" height="446" /> </div> </div>
Forum: Fixing WordPress
In reply to: wp_dropdown_categories issueExcellent thanks!
I checked the codex.. I must have missed it!!
Thanks againForum: Fixing WordPress
In reply to: Author keeps defaulting to another userExcellent thanks! The first solution worked!!
Thanks for that..
Ta!Forum: Fixing WordPress
In reply to: Author keeps defaulting to another userNo! Does that mean something?
Forum: Fixing WordPress
In reply to: Telling the difference between pages and postsThanks for the reply!
I am trying to select them out of wordpress at the moment as I do not know how to write a plugin! I have started learning but i need to do this now and I will make it a plugin over the next few weeks.
I need to select the post_ids from the post_meta which are jsut the posts and not the pages…
I am writing something in php..
Any ideas?
Cheers
MatForum: Fixing WordPress
In reply to: What is wrong with this VERY simple plugin..What a complete muppet I am!!
I must have looked at it a thousand times!
Thanks alot!
I am not going mad!
Cheers
MatForum: Fixing WordPress
In reply to: Default blank entry for get_catgories_dropdownworked like a charm
<?php wp_dropdown_categories('hide_empty=0&child_of=6&name=Factory&show_option_none=PLEASE SELECT');?>
Nice!
Forum: Fixing WordPress
In reply to: Category Drop Down List Not WorkginIt’s always the simplest of things!!!
cheers for that the space was the culprit!
Cheers
MatForum: Fixing WordPress
In reply to: Category Drop Down List Not Workginhi
Thanks for that!
It still isn’t bringing up all the subcategories.
Only the ones with articles which is not what I want.
the hide_empty doesn’t seem to be working…