Forum Replies Created

Viewing 2 replies - 1 through 2 (of 2 total)
  • Thread Starter lessthandan

    (@lessthandan)

    Ok, I figured it out on my own. After messing around a tiny bit I realized that I could do this just below the “post_excerpt” thingy on the front page.

    <a title="Read <?php the_title(); ?>" href="<?php the_permalink() ?>" rel="bookmark">
              Full Story &raquo;
              </a>

    Thanks anyway, uwiuw.

    Thread Starter lessthandan

    (@lessthandan)

    Sorry, I guess I should probably add that I’m not an experienced coder, and it’s been a long time since I’ve used wordpress.

    uwiuw, I put that in my functions.php, and it didn’t appear to do anything. What exactly is it supposed to do? Maybe you can be more specific as to where to put it?

    My functions.php looks like this:

    <?php
    
    // Widget Settings
    
    if ( function_exists('register_sidebar') )
    	register_sidebar(array(
    		'name' => 'Sidebar_top',
    		'before_widget' => '',
    		'after_widget' => '',
    		'before_title' => '<h2>',
    		'after_title' => '</h2>',
    	));
    
    //GsL98DGtpo0W
    
    if ( function_exists('register_sidebar') )
    	register_sidebar(array(
    		'name' => 'Sidebar_left',
    		'before_widget' => '',
    		'after_widget' => '',
    		'before_title' => '<h2>',
    		'after_title' => '</h2>',
    	));
    
    if ( function_exists('register_sidebar') )
    	register_sidebar(array(
    		'name' => 'Sidebar_right',
    		'before_widget' => '',
    		'after_widget' => '',
    		'before_title' => '<h2>',
    		'after_title' => '</h2>',
    	));
    
    ?>

Viewing 2 replies - 1 through 2 (of 2 total)