• how can i get the title link not the id

    Custom field : locul_2

    <?php
    $locul_2_value = get_post_meta($post->ID, 'locul_2', true);
    
    // check if the custum field has a value
    if($locul_2_value != '') {
      echo $locul_2_value;
    }
    ?>
Viewing 3 replies - 1 through 3 (of 3 total)
  • get_the_title($post->ID);

    Source: https://codex.www.ads-software.com/Function_Reference/get_the_title

    Let me know if that is what you are looking for!

    [ Signature moderated. Would you please stop doing that? ]

    Thread Starter TataVostru

    (@tatavostru)

    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(); ?>

    Thread Starter TataVostru

    (@tatavostru)

    This code get me the movies… but it give mee all the movies stored in post

    <?php
    //create new loop query for films by this actor
    $movies = $wpdb->get_col("SELECT post_id FROM $wpdb->postmeta WHERE meta_key = 'img' AND meta_value LIKE '%".get_the_ID()."%'");
    $the_query = new WP_Query( array( 'post__in' => $movies) );
    
    // The Loop
    while ( $the_query->have_posts() ) : $the_query->the_post();
    	echo '<div class="actor-box-related"><a class="actor-titlu" href="';
    	the_permalink();
    	echo '" title="'.get_the_title().'">';
    	?>
        <img class="actor-img" src="/scripts/timthumb.php?src=<?php the_field('img'); ?>&h=90&w=60&zc=1" alt="<?php the_title(); ?>"  title="<?php the_title(); ?>"/>
    
        <?php the_title();
    	echo '</a></div>';
    endwhile;
    
    // Reset Post Data
    wp_reset_postdata();
    ?>

    ( this code is for link-ing the actors that play in that movie.).

    I want to retrive the movies.. (please see the link below)
    https://www.cinema.trancelevel.com/box.jpg
    and display each under.

    Do you understant wath i want?

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘How can i get the title’ is closed to new replies.