Bu PHP sözdizimi ile sorun, ama Wordpress forumlarda hiçbir şans gibi görünüyor. Bu ilk kod bloğu kategorisinde yeni yazılan bir bağlantı oluşturur "mesaj var."
<?php $my_query = new WP_Query('category_name=posts&showposts=1'); ?>
<?php while ($my_query->have_posts()) : $my_query->the_post(); ?>
<a href="<?php the_permalink() ?>" rel="bookmark"><?php the_title(); ?></a>
<?php endwhile; ?>
Bu sonraki kod bloğu özel alan olmanın anahtarı ", mesajların" son yazı için özel alan verileri görüntüleyebilir gerektiğini "qanda." Ama öyle değil ve hiçbir şey gösterir.
<?php $my_query = new WP_Query('category_name=posts&showposts=1'); ?>
<?php while ($my_query->have_posts()) : $my_query->the_post(); ?>
<?php echo get_post_meta($post->ID, "qanda", $single = true); ?>
<?php endwhile; ?>
Teşekkürler, Mark