“WP Get ACF Categoría en Post” Código de respuesta

WP Get ACF Categoría en Post

<?php 
  $categories= get_the_category();
  if (!empty($categories)) {
    $term_id = $categories[0]->term_id;
    $image = get_field('category-image-field', 'term_'.$term_id);
    // what you do from here depends on what the field is returning
  }
?>
Weary Wildebeest

WP Recupere ACF por nombre de categoría

$category_name = get_field('category-name', $category_id);
Weary Wildebeest

Respuestas similares a “WP Get ACF Categoría en Post”

Preguntas similares a “WP Get ACF Categoría en Post”

Más respuestas relacionadas con “WP Get ACF Categoría en Post” en PHP

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código