“Obtenga todo el post meta” Código de respuesta

Obtenga todo el post meta

//Get the meta for all keys:
<?php $meta = get_post_meta($post_id); ?>
Andrew Lautenbach

WP obtiene el valor de meta campo

<?php $key_1_value = get_post_meta( get_the_ID(), 'key_1', true ); ?>
Modern Marten

WP obtiene el valor de meta campo

<?php if ( get_post_meta( get_the_ID(), 'thumb', true ) ) : ?>
    <a href="<?php the_permalink() ?>" rel="bookmark">
        <img class="thumb" src="<?php echo esc_url( get_post_meta( get_the_ID(), 'thumb', true ) ); ?>" alt="<?php the_title_attribute(); ?>" />
    </a>
<?php endif; ?>
Modern Marten

Respuestas similares a “Obtenga todo el post meta”

Preguntas similares a “Obtenga todo el post meta”

Más respuestas relacionadas con “Obtenga todo el post meta” en PHP

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código