Tycoon Talk
Become a Big fish!
The number 1 forum for online business!
Post topics, ask questions, share your knowledge.
Tycoon Talk is part of Freelancer.com - find skilled workers online at a fraction of the cost.

PHP Forum


You are currently viewing our PHP Forum as a guest. Please register to participate.
Login



Freelance Jobs

Reply
Custom Field in Wordpress
Old 04-23-2010, 09:28 AM Custom Field in Wordpress
Novice Talker

Posts: 7
Trades: 0
Hello

I have Wordpress Blog, I want to do such thing.
For each post have field, for example "File Size: " and in admin panel also the field "File Size: "
When i make new Post and type in the File size something appear on each post.

Is it clear?
Sorry for my english
Pachebi is offline
Reply With Quote
View Public Profile
 
 
Register now for full access!
Old 04-23-2010, 10:35 AM Re: Custom Field in Wordpress
racer x's Avatar
Ultra Talker

Posts: 457
Name: Randy
Location: Northern Wisconsin
Trades: 0
Take a look at the codex to get familiar with the system.

To use custom fields:

1. In the custom fields area, input the name of the custom field on the "name" side.
2. On the "value" side, input the value.

Each time you make a new post or page now, this name will be stored as an option in the custom fields section. Do not be confused however, ALL custom field options you create for any post will show up for ALL posts or pages. You have the option to add a different value to it each time. Wordpress will associate that name value pair for the post.

To retrieve the custom field:
PHP Code:
<?php 
// retrive the value based on the name you set
$field_value get_post_meta($post->ID'the-custom-field-name'$single true); 
// if there is data set for this custom field
if($field_value !== '') { 
?>
// Do something here with echo $field_value;
<?php ?>
You can add multiple custom fields as well.

Good luck!

Last edited by racer x; 04-23-2010 at 10:38 AM..
racer x is offline
Reply With Quote
View Public Profile Visit racer x's homepage!
 
Reply     « Reply to Custom Field in Wordpress
 

Thread Tools Search this Thread
Search this Thread:

Advanced Search

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are Off
Pingbacks are Off
Refbacks are Off





   
RSS Feed  Feeds: RSS   JS   XML
RSS Feed  Feeds for this forum: RSS   JS   XML



Page generated in 0.10448 seconds with 12 queries