Support » Fixing WordPress » Song Lyrics

  • Greetings people of WordPress and its community.

    I am currently helping my fiance, building her blog (since i got mine up and running)

    She wants have two pages 3 pages.
    One is static, witch is about her.
    The other two is dynamic and should contain posts.
    One is for blogs and one is for song lyrics.

    Here comes my question.
    Is there any plugin that makes it possible to POST, just like posts. Into another Page ?

    Meaning. Blogs in one page Lyrics in another one ? from the admin cp.

    She does not want to EDIT her Lyrics page, everytime she adds a new song.

    All help is appricated!

Viewing 3 replies - 1 through 3 (of 3 total)
  • It requires some ‘tweaking’, but that’s possible. See this for starters. If you google a bit, you’ll also find similar ideas of how to post certain categories on certain pages, so you can make a category “lyrics” on one page, a category “poems” on another and all other posts on the ‘blog part’.

    Thread Starter winxzy

    (@winxzy)

    Thank you so much for this, i will test this and come with more feedback!

    Thread Starter winxzy

    (@winxzy)

    Alright most sorry for the double post.
    After some coding and some lots of reading i figured i could use this sort of code

    <?php
     global $post;
     $myposts = get_posts('numberposts=50&offset=1&category=4');
     foreach($myposts as $post) :
     ?>
        <li><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></li>
     <?php endforeach; ?>
    </ul>

    My problem now is that it comes up on all pages i make.
    Is it possible to Exclude the categories, meaning if its ain’t that category it won’t show up on the page ?

    Example: About me: shows the lyrics now. So does Lyrics page.
    How can i change so if i press About me (this i written comes about me)
    if i press lyrics all the lyrics come up.

    Thanks again

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Song Lyrics’ is closed to new replies.