Forum Replies Created

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

    (@egable)

    That did it … thanks!

    (Note to anyone trying to duplicate: Looks like to include a specific category rather than exclude, you remove the minus sign.)

    I added the code between

    <?php
    	if(!stristr($_SERVER['REQUEST_URI'],'/page/')) {
    		if(get_option('uwc_latest_story') == "on") { echo '<h5>Latest Story</h5>'; }

    and

    if(get_option('uwc_post_layout') == 1) { include (TEMPLATEPATH.'/layout/option1.php'); }
    		if(get_option('uwc_post_layout') == 2) { include (TEMPLATEPATH.'/layout/option2.php'); }
    		if(get_option('uwc_post_layout') == 3) { include (TEMPLATEPATH.'/layout/option3.php'); }
    		if(get_option('uwc_post_layout') == 4) { include (TEMPLATEPATH.'/layout/option4.php'); }
    	} else {
    		include (TEMPLATEPATH.'/layout/default.php');
    	}
        ?>

    … of course, that might be theme-specific. (I’m using Magazine Basic.)

    Thread Starter egable

    (@egable)

    (Please disregard the question about My Category Order — the Category Order plugin seems to work.)

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