no this is not, i want to retrive the title from post’s
This i want(please look at the pictures):
Hy im not familiar so good with php code,i’m building a cinema site, im stuck in Box-office
EX: https://cinema.trancelevel.com/box-office/1-iulie-7-iulie-2012/
The Movies are stored in Posts :
https://www.cinema.trancelevel.com/movies.jpg
The Box-office are post_type:
https://www.cinema.trancelevel.com/box.jpg
How can i link to display the post into post type…?
Now in Box-Office i have post_type with the field locul_1, locul_2… and so on
In each other i add a movie that i want to be display in Box Office Theme
<?php
/*
Template Name Posts: Pagina Box-Office RO
*/
?>
<?php include (TEMPLATEPATH . '/header/index-trailer.php'); ?>
<div class="art-contentLayout">
<div class="breadcrumbs">
<?php if(function_exists('bcn_display'))
{
bcn_display();
}?>
</div>
<div class="art-content">
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<div class="box-film">
<h2 class="titlu-film">
<a>" rel="bookmark" title="<?php printf(__('%s'), the_title_attribute('echo=0')); ?>"><?php the_title(); ?></a>
</h2>
<div class="art-Post">
<div class="art-Post-tl"></div>
<div class="art-Post-tr"></div>
<div class="art-Post-bl"></div>
<div class="art-Post-br"></div>
<div class="art-Post-tc"></div>
<div class="art-Post-bc"></div>
<div class="art-Post-cl"></div>
<div class="art-Post-cr"></div>
<div class="art-Post-cc"></div>
<div class="art-Post-body">
<table class="tabel-box" border="0" cellpadding="1">
<tr>
<td class="tabel-img" rowspan="3"><img src="/scripts/timthumb.php?src=<?php the_field('img'); ?>&h=120&w=90&zc=1" alt="<?php the_title(); ?>" title="<?php the_title(); ?>"/>
</td>
<td class="tabel-numar">1</td>
<td class="tabel-titlu" colspan="5"></td>
</tr>
<tr>
<td class="tabel-numar-s"rowspan="2"></td>
<td class="tabel-gen">Gen film</td>
<td class="tabel-st">Saptamana trecuta</td>
<td class="tabel-iw">Incasari Weekend</td>
<td class="tabel-t">Vezi trailer</td>
</tr>
<tr>
<td class="tabel-link">Action, adventure</td>
<td class="tabel-link"><?php $key="incasari_weekend"; echo get_post_meta($post->ID, $key, true); ?></td>
<td class="tabel-link"><?php $key="incasari_totale"; echo get_post_meta($post->ID, $key, true); ?></td>
<td class="tabel-link">?</td>
</tr>
</table>
</div>
</div>
</div>
<?php endwhile; ?>
<?php else: ?>
<h2 class="center"><?php _e('Sorry, no posts matched your criteria.', 'kubrick'); ?></h2>
<?php endif; ?>
</div>
<?php include (TEMPLATEPATH . '/sidebar1.php'); ?>
</div>
<div class="cleared"></div>
<?php get_footer(); ?>