0

How can I make the following in wordpress (have googled and searched here):

Singers pages (10-20 singers), each of them has:

  • biography.
  • discography.
  • posts where he is mentioned (by tag probably).

Kindly help.

Kuf
  • 17,318
  • 6
  • 67
  • 91
iwtech.ru
  • 39
  • 1
  • 8

1 Answers1

0

Here is all you need to do it in wordpress backend

Here is all you need if you want to code your functions.php

Steps

1 - Register your post type and taxonomy (tags) in your function.php

2 - Create custom fields with acf plugin

3 - Create your taxonomies (tags)

4 - Create example post

6 - Create page template that would fetch signers (WP_Query()) http://codex.wordpress.org/Class_Reference/WP_Query

7 - Associate template to a page of your site.

Philippe Boissonneault
  • 3,949
  • 3
  • 26
  • 33