• How can i – ?

    1. Blog page to show posts for all caregories except Media

    2. Media page to show only posts from category Media

    Thanks

Viewing 9 replies - 1 through 9 (of 9 total)
  • Use query_posts.

    Thread Starter jazzpsingh

    (@jazzpsingh)

    i am using Sunshine theme and new at this.

    Can someone point me to step by step.

    What pages i need to edit or create ? etc

    Thread Starter jazzpsingh

    (@jazzpsingh)

    any one ?

    Is this on the main page or in a different url? Please provide a link to your Blog and where you want to exclude the Media category.

    Thread Starter jazzpsingh

    (@jazzpsingh)

    would like to show all blogs except video on
    https://avwoon.com/blog/

    and only video on

    https://avwoon.com/video/

    thanks

    HELLo,

    I assume your using pages to accomplish what your doing at the moment? Are you using a special template for the pages file or?

    If so, please paste the code your using to retrieve a list of the posts on your blog.

    Thread Starter jazzpsingh

    (@jazzpsingh)

    here is from my template for page template (page.php)
    i guess pages are based on this.

    1. do i need to create another template and base the page on that ?
    2. How do i do so, if you provide me with code?
    3. Would i save the file and upload using ftp, i dont see a way in wordpress appearance-editor.

    ~
    <?php $options = get_option(‘inove_options’); ?>

    <?php if (have_posts()) : the_post(); update_post_caches($posts); ?>

    <div class=”post” id=”post-<?php the_ID(); ?>”>
    <h2><?php the_title(); ?></h2>
    <div class=”info”>
    <div class=”act”>

    </div>
    <div class=”fixed”></div>
    </div>
    <div class=”content”>
    <?php the_content(); ?>
    <div class=”fixed”></div>
    </div>
    </div>

    <?php else : ?>
    <div class=”errorbox”>
    <?php _e(‘Sorry, no posts matched your criteria.’, ‘inove’); ?>
    </div>
    <?php endif; ?>
    ~

    How do you accomplish to get your posts to be listed on your pages?

    Thread Starter jazzpsingh

    (@jazzpsingh)

    Settings – REading – Post page – > BLOG ( I chose)

Viewing 9 replies - 1 through 9 (of 9 total)
  • The topic ‘Category question’ is closed to new replies.