No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
4 Posted Topics
I think, you forgot to add http:// to your custom field value. [CODE] <?php $downloadurl = get_post_meta($post->ID, 'download_url', true); if($downloadurl != ""){ echo '<a href="'.$downloadurl.'"><span>Download</span></a>'; } ?> [/CODE] It works fine :)
use css [CODE] .yourmaindivclass{ width:500px; margin:0 auto; } [/CODE]
try this: [B]custom field name:[/B] post_image_value [B]value:[/B] yourimageurl [B]custom field name:[/B] post_title_value [B]value:[/B] your post title
create single.php file on theme folder. and use this code: [CODE] <?php if(have_posts()) : while(have_posts()) : the_post(); ?> <?php the_content('devamını oku »'); ?> <?php endwhile; endif; ?> [/CODE] If everything is ok, that means your post variable is empty. If not, you may change your static page. Control your settings …
The End.