[Carrington] How to make my Blog my Home page?

14 views
Skip to first unread message

Deauxmain

unread,
May 1, 2010, 11:03:31 PM5/1/10
to Carrington CMS Theme Framework for WordPress
I'm new to Carrington, and find it very confusing, so I was hoping
someone could point me in the right direction. I've read the readme
files over and over, and still don't understand it.

All I'm trying to do is make the Posts page my Home Page. If you go to
the site it goes to the Blog, but I can't make the "Home" tab go back
to the Blog posts. http://awelldressedhome.com/test/

What am I doing wrong?

Thanks!


Kai Pan

unread,
May 2, 2010, 3:25:48 AM5/2/10
to carrington...@googlegroups.com
Check your wordpress general settings. Is home or front page set to a specific page as opposed to the latest posts?

Deauxmain

unread,
May 2, 2010, 7:22:37 AM5/2/10
to Carrington CMS Theme Framework for WordPress
It's set to display "Your latest posts".



On May 2, 2:25 am, Kai Pan <kai....@gmail.com> wrote:
> Check your wordpress general settings. Is home or front page set to a
> specific page as opposed to the latest posts?
>
> On Sun, May 2, 2010 at 11:03 AM, Deauxmain <deauxm...@gmail.com> wrote:
> > I'm new to Carrington, and find it very confusing, so I was hoping
> > someone could point me in the right direction. I've read the readme
> > files over and over, and still don't understand it.
>
> > All I'm trying to do is make the Posts page my Home Page. If you go to
> > the site it goes to the Blog, but I can't make the "Home" tab go back
> > to the Blog posts.http://awelldressedhome.com/test/

Kai Pan

unread,
May 2, 2010, 8:32:48 AM5/2/10
to carrington...@googlegroups.com
Check your plugins or maybe your permalinks. All of your links have a query ? attached to them and Home is querying a page. I'm assuming you've checked your actual php code, right? Are you using the list_pages template tag? Do you have a Home "page" created? I think list_pages has a variable/parameter that creates a "home" link. Or was that list_categories? Forgot. But I think you have a "Home" page created and its being listed and thus throwing you off from an actual home link.
Message has been deleted

Deauxmain

unread,
May 4, 2010, 7:17:39 AM5/4/10
to Carrington CMS Theme Framework for WordPress
Below is the code in my header-default.php file that shows the
wp_list_pages. See anything wrong?
Why wouldn't it create a "Home" tab on my navigation? There is no
"Home" page in my pages.

Thanks,
Deauxmain

<body class="<?php sandbox_body_class() ?>">
<div id="page">
<p id="top"><a id="to-content" href="#content"
title="<?php
_e( 'Skip to content', 'sandbox' ) ?>"><?php _e( 'Skip to content',
'carrington' ); ?></a></p>
<div id="header">
<div class="wrapper">
<strong id="blog-title"><a href="<?php
bloginfo('url') ?>/"
title="Home" rel="home"><?php bloginfo('name') ?></a></strong>

<!-- <strong id="blog-title"><a
href="<?php# bloginfo('url') ?>/"
title="Home" rel="home"><img src="http://awelldressedhome.com/wp-
content/uploads/2010/04/logo.jpg"></a></strong> -->

<p id="blog-description"><?php
bloginfo('description'); ?></p>
<div id="navigation">
<ul>
<?php
wp_list_pages('title_li='); ?>
<?php
global $user_ID;
if($user_ID) {
echo '<li
class="secondary"><a href="' . site_url('wp-login.php?
action=logout', 'login') . '">' . __('Log Out', 'carrington') . '</
a></
li>';
} else {
echo '<li
class="secondary"><a href="' . site_url('wp-
login.php', 'login') . '">' . __('Log In', 'carrington') . '</a></
li>';
}
?>
<?php wp_register('<li
class="secondary">', '</li>'); ?>
</ul>
</div><!-- #navigation -->
</div><!-- .wrapper -->
</div><!-- #header -->

On May 2, 7:32 am, Kai Pan <kai....@gmail.com> wrote:
> Check your plugins or maybe your permalinks. All of your links have a query
> ? attached to them and Home is querying a page. I'm assuming you've checked
> your actual php code, right? Are you using the list_pages template tag? Do
> you have a Home "page" created? I think list_pages has a variable/parameter
> that creates a "home" link. Or was that list_categories? Forgot. But I think
> you have a "Home" page created and its being listed and thus throwing you
> off from an actual home link.
>

Kai Pan

unread,
May 4, 2010, 7:24:24 AM5/4/10
to carrington...@googlegroups.com
I just looked at your test website and there's no Home navigation button anymore unlike the first time. Your code says you're using wp_list_pages now, and after checking the Codex, wp_list_pages doesn't have a "home" parameter (unlike wp_page_menu).

But what were you using before? What was the original code?

You can either manually add a "home" <li> to wp_list_pages or you can use wp_page_menu.

On Tue, May 4, 2010 at 7:14 PM, Deauxmain <deau...@gmail.com> wrote:
Below is the code in my header-default.php file. See anything wrong?

Why wouldn't it create a "Home" tab on my navigation? There is no
"Home" page in my pages.

Thanks,
Deauxmain

<body class="<?php sandbox_body_class() ?>">
       <div id="page">
               <p id="top"><a id="to-content" href="#content" title="<?php
_e( 'Skip to content', 'sandbox' ) ?>"><?php _e( 'Skip to content',
'carrington' ); ?></a></p>
               <div id="header">
                       <div class="wrapper">
                               <strong id="blog-title"><a href="<?php bloginfo('url') ?>/"
title="Home" rel="home"><?php bloginfo('name') ?></a></strong>

                               <!-- <strong id="blog-title"><a href="<?php# bloginfo('url') ?>/"
title="Home" rel="home"><img src="http://awelldressedhome.com/wp-
content/uploads/2010/04/logo.jpg
"></a></strong> -->

                               <p id="blog-description"><?php bloginfo('description'); ?></p>
                               <div id="navigation">
                                       <ul>
                                               <?php wp_list_pages('title_li='); ?>
                                               <?php
                                               global $user_ID;
                                               if($user_ID) {
                                                       echo '<li class="secondary"><a href="' . site_url('wp-login.php?
action=logout', 'login') . '">' . __('Log Out', 'carrington') . '</a></

li>';
                                               } else {
                                                       echo '<li class="secondary"><a href="' . site_url('wp-
login.php', 'login') . '">' . __('Log In', 'carrington') . '</a></
li>';
                                               }
                                                ?>
                                               <?php wp_register('<li class="secondary">', '</li>'); ?>
                                       </ul>
                               </div><!-- #navigation -->
                       </div><!-- .wrapper -->
               </div><!-- #header -->



On May 2, 7:32 am, Kai Pan <kai....@gmail.com> wrote:
> Check your plugins or maybe your permalinks. All of your links have a query
> ? attached to them and Home is querying a page. I'm assuming you've checked
> your actual php code, right? Are you using the list_pages template tag? Do
> you have a Home "page" created? I think list_pages has a variable/parameter
> that creates a "home" link. Or was that list_categories? Forgot. But I think
> you have a "Home" page created and its being listed and thus throwing you
> off from an actual home link.
>
Reply all
Reply to author
Forward
0 new messages