paddyrs
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: How to add your own pages??Brilliant! Belewien, if you do what mdawaffe said (with the pages and themes and all that), you can have it howEVER you want. You can put the header, sidebar in or just have a completely blank page. Thanks mdawaffe. Worked well.. just gotta go customise!
Forum: Fixing WordPress
In reply to: How to add your own pages??https://rocketbox.org/paddy/?page_id=6
Oh that page I basically want it to be blank to begin with.. so then I can add whatever I want..
Forum: Fixing WordPress
In reply to: How to add your own pages??I’m confused with adding my own pages…
<?php
/*
Template Name: Photos
*/
?>
Do I add that in my “Write Page” thing? I don’t understand how it works…Forum: Fixing WordPress
In reply to: How to add your own pages??OK! Great – thanks mdawaffe!
Forum: Fixing WordPress
In reply to: How to get started with my own ideas?Try this site: https://codex.www.ads-software.com/Using_Themes
If you’re using WP 1.5, you modify themes (edit them) by going to Presentation, and then Theme Editor.Forum: Fixing WordPress
In reply to: How to add your own pages??Hmmm, I tried the one you gave me, and also <?php require(‘/paddy/wp-content/themes/benevolence/header.php’); ?> (my file is for some reason not wp-blogheader.php but header.php
I want to do this instead of page templates because I dont want all that File Under, posted @ and RSS feed stuff… and I want to put HTML tables and stuff on the pages. Can you do that?
Forum: Fixing WordPress
In reply to: comments directly behind posts(in the index file i mean… the comment bit after php the_content)
Forum: Fixing WordPress
In reply to: comments directly behind postsI get what you mean. You have to play around with:
<?php the_content(); ?>
<div class=”commentPos”><?php wp_link_pages(); ?><?php comments_popup_link(__(‘0 Comments’), __(‘1 Comment’), __(‘% Comments’)); ?></div>I think… Sorry I couldn’t help, but I’m pretty sure that’s what you have to edit.
Forum: Fixing WordPress
In reply to: How to add your own pages??I know exactly what you mean Belewien – I can’t figure out how to do it either! Alphaoide, I think doesn’t want to use those sort of pages. (Not via wp’s admin panel)..
I want to do the same thing and I’ve tried using
<?php get_header(); ?>
<?php get_sidebar(); ?>
for the first two lines and then adding my content and finishing with get footer.. and all it shows is:Fatal error: Call to undefined function: get_header() in /home/rbox/public_html/paddy/wp-content/themes/benevolence/about.php on line 1
I think I have the same problem as Belewien even though I tried doing the header differently.