Results 1 to 9 of 9

Thread: Blog Front Page

  1. #1
    Ipstenu's Avatar
    Ipstenu is offline Big Tipper
    Join Date
    Feb 2010
    Posts
    368

    Icon5 Blog Front Page

    This very well could just be me, but I really liked the excerpts on the front page (even if they don't have a featured image) to having the whole post up there. Hearkens back to 'continue this story on page A71, maybe. Just an opinion, easily dismissed.

    I do like the bullets for the podcasts, though

  2. #2
    Ryan's Avatar
    Ryan is offline WordPress Legend
    Join Date
    Jan 2009
    Location
    New Zealand
    Posts
    2,801

    Default

    I very much prefer full posts to be displayed on the home page as it makes it much easier to skim read the latest posts. Ironically, my own site http://pixopoint.com/ only shows excerpts .... thikning on the fly here - I might make a "blog" page which displays them all as full posts perhaps (job for the weekend :)).

  3. #3
    Jeffro's Avatar
    Jeffro is offline WPTavern Forum Admin
    Join Date
    Jan 2009
    Location
    Ohio
    Posts
    2,359

    Default

    Based on some feedback I've received, I've been playing around with the website to make it simpler, perhaps a bit more easier to navigate. However, some things I haven't been able to do and I'm awaiting Justin Tadlock to finish up a reworked version of Hybrid News before I can really reorganize things. For example, I'd like to remove the category bar as I've been told it confuses the navigation of the site. I was told that it might be beneficial to put the latest forum posts within the content side of the site but I just moved it back to the sidebar because it's ugly. I've already made the top page navigation easier and have renamed a few links.

    Also, the front page now has page navigation at the bottom which has been the number one requested feature to the site but because I was using a page template for the front page, pages don't have numbering. However, I get your point about the thumbnails and excerpts which I very much enjoyed. I've instructed Justin that I'd love to have that LOOK to the blog page layout of Hybrid News.

    All in due time. For now, just wear out your scroll wheel.

  4. #4
    chipbennett's Avatar
    chipbennett is offline WordPress Legend
    Join Date
    Feb 2009
    Location
    St. Louis, MO
    Posts
    1,997

    Default

    Looking good, Jeff!

    Can you add a wp_list_categories() anywhere (e.g. in the sidebar)? The top navigation/category menu bar doesn't display all of your categories, and sometimes, it's helpful to find posts in one of your other categories.
    WP TurnKey - Turn-Key WordPress installation and maintenance services
    WordPress user since 2005 | @chip_bennett | chipbennett.net | cbnet Plugins

  5. #5
    Ipstenu's Avatar
    Ipstenu is offline Big Tipper
    Join Date
    Feb 2010
    Posts
    368

    Default

    All in due time. For now, just wear out your scroll wheel
    I admit, I mostly read the posts on RSS :D Save 'em up and read over lunch.

  6. #6
    andrea_r's Avatar
    andrea_r is offline WordPress Rockstar
    Join Date
    Jan 2009
    Location
    Eastern Canada
    Posts
    1,325

    Default

    I have actually hurt my scroll finger from scrolling. It was a tough week. :D

    ANYWAY. I really only read specific posts from twitter or via rss. 3rd case is I'm searching for a particular post or I want to see recent comments.

  7. #7
    Jeffro's Avatar
    Jeffro is offline WPTavern Forum Admin
    Join Date
    Jan 2009
    Location
    Ohio
    Posts
    2,359

    Default

    When I remove the category navigation bar, I'm going to find a way to add a drop down menu with a list of the categories. I wonder if I can add it to the wp_list_pages navigation bar.

  8. #8
    chipbennett's Avatar
    chipbennett is offline WordPress Legend
    Join Date
    Feb 2009
    Location
    St. Louis, MO
    Posts
    1,997

    Default

    Quote Originally Posted by Jeffro View Post
    When I remove the category navigation bar, I'm going to find a way to add a drop down menu with a list of the categories. I wonder if I can add it to the wp_list_pages navigation bar.
    Yes, you can.

    Just wrap both function calls in UL tags, and specify the argument '&title_li=' (which ensures that the function doesn't add containing UL tags), like such:

    PHP Code:
    <ul>
    <?php wp_list_pages('title_li='); ?>
    <?php wp_list_categories
    ('title_li='); ?>
    </ul>
    Thus, pages will be listed first, each in its own LI. Then categories will be listed, each in its own LI.

    (Doing that from memory, but it should be correct.)
    WP TurnKey - Turn-Key WordPress installation and maintenance services
    WordPress user since 2005 | @chip_bennett | chipbennett.net | cbnet Plugins

  9. #9
    chipbennett's Avatar
    chipbennett is offline WordPress Legend
    Join Date
    Feb 2009
    Location
    St. Louis, MO
    Posts
    1,997

    Default

    Quote Originally Posted by andrea_r View Post
    ANYWAY. I really only read specific posts from twitter or via rss. 3rd case is I'm searching for a particular post or I want to see recent comments.
    Ditto. That is *exactly* what I do. :)
    WP TurnKey - Turn-Key WordPress installation and maintenance services
    WordPress user since 2005 | @chip_bennett | chipbennett.net | cbnet Plugins

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •