• Resolved lobos55

    (@lobos55)


    I am setting up a bibliography site. Each publication has multiple authors (custom field).
    I would like to show an index of all publications of each author. AZIndex only takes the first value of the custom field.
    Is there a way to solve this, i.e. using all values of the custom field?

Viewing 1 replies (of 1 total)
  • I guess this is what you’r looking for?

    <?php
    $songs = get_post_meta($post->ID, 'songs', false);
    ?>
    	<?php foreach($songs as $song) {
    			echo '<li>'.$song.'</li>';
    
    			} ?>
    	</ul>

    More here

    Have fun, I did!

    Gino

Viewing 1 replies (of 1 total)
  • The topic ‘Plugin AZIndex’ is closed to new replies.