phoenix2005
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: User/Author Profile on siteThe theme I’m using is very strict on how it’s pages look, so the template in that link is good, but doesn’t really suit what I’m looking for.
What about if I manually made the pages for each author, how could I make it where it automatically links to the person’s profile who wrote it?
Forum: Fixing WordPress
In reply to: Featured Content Gallery messing site upPlease, if anyone can help me, I would REALLY appreciate it. I’m sorry to keep bumping this thread, but usually I get good support on this forum, but it’s been a while, and no answer.
Thanks.
Forum: Fixing WordPress
In reply to: Featured Content Gallery messing site upI still need this resolved if anyone can help please.
Thank you.
Forum: Fixing WordPress
In reply to: Featured Content Gallery messing site upBump. I still need this fixed ASAP!
Thanks.
Forum: Fixing WordPress
In reply to: Making a Page appear instead of all my PostsThat’s what I don’t understand about it. I have a page.php, but for some reason it pulls from the posts.
Here is the code for it, maybe someone can help out?
<?php get_header(); ?> <div id="post"> <?php if (have_posts()) : ?><?php while (have_posts()) : the_post(); ?> <div class="post-meta" id="main-post"> <h1><a href="<?php the_permalink() ?>" rel="bookmark" title="<?php the_title(); ?>"><?php the_title(); ?></a></h1> <div class="postedby"> <div class="post-status"> <strong><?php _e('Posted by'); ?></strong> <?php the_author_posts_link(); ?> in <?php the_time('F jS, Y') ?> <?php edit_post_link('Edit', '', ''); ?> </div> <div class="comment-stats"><?php comments_popup_link('Leave comment', '1 Comment', '% Comments'); ?></div> </div> <div class="fileunder"> <div class="atgcat"><?php _e('Posted in'); ?>: <?php the_category(', ') ?> <?php if(function_exists("UTW_ShowTagsForCurrentPost")) : ?><?php UTW_ShowTagsForCurrentPost("commalist", array('last'=>' and %taglink%', 'first'=>'Tags in: %taglink%',)) ?><?php else : ?><?php if(function_exists("the_tags")) : ?><?php the_tags() ?><?php endif; ?><?php endif; ?> </div> </div> <?php if(file_exists(TEMPLATEPATH . '/social.php')): ?> <?php include (TEMPLATEPATH . '/social.php'); ?> <?php else: ?> <?php endif; ?> <div class="post-content"> <?php the_content("Read more..."); ?> </div> </div> <span class="article_seperator"> </span> <?php endwhile; ?> <div class="clear-fix"></div> <?php if(file_exists(TEMPLATEPATH . '/paginate.php')): ?> <?php include (TEMPLATEPATH . '/paginate.php'); ?> <?php else: ?> <?php endif; ?> <div class="clear-fix"></div> <?php if ('open' == $post->comment_status) : ?> <?php comments_template(); ?> <?php else: ?> <?php endif; ?> <?php else: ?> <h2>Sorry the page you looking for did not exist or already removed by author</h2> <?php endif; ?> </div> <?php get_sidebar(); ?> <?php get_footer(); ?>
Forum: Fixing WordPress
In reply to: Pagination not workingI think I understand where your problem was, but were you having the same issues as I am having on my site?
Notice when you click the “About” section, it goes to a list of recently posted posts instead of the text I have for the “About” section. Was this your problem, and if so, how did that site help you?
Forum: Fixing WordPress
In reply to: Making a Page appear instead of all my PostsI still need help with this. It’s not resolved.
I appreciate it. Thanks.
Forum: Fixing WordPress
In reply to: Making a Page appear instead of all my PostsI don’t want the front page to change. I want that when I click “About” and “DJ’s” it goes to the page that I have created for them, not the same blog format of all my posts.
Like this is my “About” page – https://phoenixgaming.org/fit/?page_id=2
And it has my normal posts on it, instead of the text I wrote on the About page in the admin panel.
Forum: Fixing WordPress
In reply to: Making a Page appear instead of all my PostsAny immediate help would be appreciated.
Thanks.
Forum: Fixing WordPress
In reply to: Adding Post and Pages that aren’t on the navigationAnyone?
Forum: Fixing WordPress
In reply to: Adding Post and Pages that aren’t on the navigationI’ve got this in there now:
<?php wp_list_pages('title_li=&depth=3&sort_column=menu_order'); ?>
Where should I add the
'exclude=17,38'
in, and what should the code look like after that?