• Resolved Maitre2B

    (@maitre2b)


    Hi Template author,

    I was wondering if you were thinking about a new design for the home page.
    Indeed, the custome homepage is great with the slider + 3 featured text boxes + 2 recents posts.

    But it would be nice to have a design for “bloggers”, like a really usefull homepage where there is really some main content & articles.

Viewing 7 replies - 1 through 7 (of 7 total)
  • Thread Starter Maitre2B

    (@maitre2b)

    i made an exemple with paint :

    [URL=https://www.hostingpics.net/viewer.php?id=808813newhomepage.png][IMG]https://img11.hostingpics.net/pics/808813newhomepage.png[/IMG][/URL]

    It would be to display the 3 last post on every category on the home page.

    If you don’t want to build this because you don’t have enaugh time, would you please give me the PHP Code to display the 3 last post of a specified categorie ?
    Then i’ll just have to do the html/css.

    Thank you.

    Theme Author Template Express

    (@danstriker)

    Hello,

    the custom homepage template currently shows the last 2 posts from all categories. This is the code:

    $the_query = new WP_Query(array(
                'cat'             => $recent_cat,
                'showposts'       => 2,
                'post__not_in'    => get_option("sticky_posts"),
              ));

    Change the cat and showposts amount to what you want to show.

    Thread Starter Maitre2B

    (@maitre2b)

    And how to choose to only display the image et the title of the post ?

    thank you

    Thread Starter Maitre2B

    (@maitre2b)

    Okay, i succeeded !

    But i have only last isue.
    I can’t chose the category of posts i want to display

    $the_query = new WP_Query(array(
    ‘cat’ => ‘actu-geek’,
    ‘showposts’ => 2,
    ‘post__not_in’ => get_option(“sticky_posts”),
    ));

    $the_query = new WP_Query(array(
    ‘cat’ => ‘culture-geek’,
    ‘showposts’ => 2,
    ‘post__not_in’ => get_option(“sticky_posts”),
    ));

    $the_query = new WP_Query(array(
    ‘cat’ => ‘tutoriels’,
    ‘showposts’ => 2,
    ‘post__not_in’ => get_option(“sticky_posts”),
    ));

    They display all the same 3 last posts…

    Theme Author Template Express

    (@danstriker)

    Hello,

    try adding the category id rather than the category name.

    I would like to remove the posts from the custom home page template, and replace it with additional text, rather than posts, but I can’t figure out how to do that.

    Theme Author Template Express

    (@danstriker)

    hello,

    I have answered your question on your thread regarding this.

Viewing 7 replies - 1 through 7 (of 7 total)
  • The topic ‘New homepage’ is closed to new replies.