Login
New Snippet
Your Favorites
Popular Snippets
Recent Snippets
Profile
elieandraos
Get Wordpress Custom Field Value
Language
PHP
Tags
Wordpress
Get Wordpress Custom Field Value
Comments Mode
Copy & Paste Mode
Embed
1
<?
php
echo
get_post_meta
(
$post
->
ID
,
'custom-field-key'
,
true
);
?>
1
<?
php
echo
get_post_meta
(
$post
->
ID
,
'custom-field-key'
,
true
);
?>
Comments
Sign in
to leave a comment.
<?php echo get_post_meta($post->ID, 'custom-field-key', true); ?>