Forum Replies Created

Viewing 7 replies - 1 through 7 (of 7 total)
  • Forum: Fixing WordPress
    In reply to: website structure
    Thread Starter 2handband

    (@2handband)

    Solved it… I installed Advanced Page Manager.

    Forum: Fixing WordPress
    In reply to: website structure
    Thread Starter 2handband

    (@2handband)

    What I want is to create a tree-style site layout. I want the home page to link to a handful of other pages, each of which will link to others that are not linked from the homepage. I can’t see how to do that.

    Forum: Fixing WordPress
    In reply to: website structure
    Thread Starter 2handband

    (@2handband)

    Sooo… The tools I need to create a site layout are within the themes?

    Thread Starter 2handband

    (@2handband)

    Because I spent a lot of time getting the site to look the way I want it, and don’t want it altered.

    Thread Starter 2handband

    (@2handband)

    I managed to fix the ugly… I’m starting to move in towards what I want. I now have three questions:

    1) How can I unlink the titles and other stuff so that people will not be able to view the blog directly

    2) How can I set up comments so that they can be done from my homepage?

    3) How do i put a subscribe link on my homepage?

    Thread Starter 2handband

    (@2handband)

    Okay, I’m getting there…

    I put the following into my index.php file:

    <?php if ( have_posts() ) : ?>
    
    				<?php twentyeleven_content_nav( 'nav-above' ); ?>
    
    				<?php /* Start the Loop */ ?>
    				<?php while ( have_posts() ) : the_post(); ?>
    
    					<?php get_template_part( 'content', get_post_format() ); ?>
    
    				<?php endwhile; ?>
    
    				<?php twentyeleven_content_nav( 'nav-below' ); ?>
    
    			<?php else : ?>
    
    				<article id="post-0" class="post no-results not-found">
    					<header class="entry-header">
    						<h1 class="entry-title"><?php _e( 'Nothing Found', 'twentyeleven' ); ?></h1>
    					</header><!-- .entry-header -->
    
    					<div class="entry-content">
    						<p><?php _e( 'Apologies, but no results were found for the requested archive. Perhaps searching will help find a related post.', 'twentyeleven' ); ?></p>
    						<?php get_search_form(); ?>
    					</div><!-- .entry-content -->
    				</article><!-- #post-0 -->
    
    			<?php endif; ?>

    But if you navigate to the site you’ll find that the title of the post is freaking huge! And kind of messed up. can I do something about this?

    Thread Starter 2handband

    (@2handband)

    I got a little ways down the line using the wordpress tutorials, but I’ve only found code that will allow me to display a link the a post or an excerpt from the post on my home page. What i want to do is display the posts in their entirety… how do I do that? Here’s the code I used to display links:

    <?php
    require('blog/wp-blog-header.php');
    ?>
    
    <?php query_posts('showposts=10'); ?>
    <?php while (have_posts()) : the_post(); ?>
    <a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title(); ?>"><?php the_title(); ?></a><br />
    <?php endwhile;?>

    and to disply excerpts:

    <?php
    require('blog/wp-blog-header.php');
    ?>
    
    <?php query_posts('showposts='); ?>
    <?php while (have_posts()) : the_post(); ?>
    <a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title(); ?>"><?php the_title(); ?></a><br />
    <?php endwhile;?>
Viewing 7 replies - 1 through 7 (of 7 total)