Jetzt wirds deutlicher danke ...
nur versteh ich nicht gerade viel mit anpassung eines scriptes :/ Kann mir da einer helfen?
So sieht der Inhalt meines page.php vom theme aus :
ZitatAlles anzeigen<?php get_header(); ?>
<div class="span-24" id="contentwrap">
<div class="span-16">
<div id="content"><?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<div class="post" id="post-<?php the_ID(); ?>">
<h3 class="title"><?php the_title(); ?></h3>
<div class="entry">
<?php if ( function_exists("has_post_thumbnail") && has_post_thumbnail() ) { the_post_thumbnail(array(300,225), array("class" => "alignleft post_thumbnail")); } ?>
<?php the_content('<p class="serif">Read the rest of this page »</p>'); ?>
<?php wp_link_pages(array('before' => '<p><strong>Pages:</strong> ', 'after' => '</p>', 'next_or_number' => 'number')); ?>
</div>
</div>
<?php endwhile; endif; ?>
<?php edit_post_link('Edit this entry.', '<p>', '</p>'); ?>
</div>
</div><?php get_sidebars(); ?>
</div>
<?php get_footer(); ?>
und so sieht z.b. die activate.php von BP die ich ändern muss aus :
ZitatAlles anzeigen<?php /* This template is only used on multisite installations */ ?>
<?php get_header(); ?>
<div id="content">
<div class="padder"><?php do_action( 'bp_before_activation_page' ) ?>
<div class="page" id="activate-page">
<?php do_action( 'template_notices' ) ?>
<?php if ( bp_account_was_activated() ) : ?>
<h2 class="widgettitle"><?php _e( 'Account Activated', 'buddypress' ) ?></h2>
<?php do_action( 'bp_before_activate_content' ) ?>
<?php if ( isset( $_GET['e'] ) ) : ?>
<p><?php _e( 'Your account was activated successfully! Your account details have been sent to you in a separate email.', 'buddypress' ) ?></p>
<?php else : ?>
<p><?php _e( 'Your account was activated successfully! You can now log in with the username and password you provided when you signed up.', 'buddypress' ) ?></p>
<?php endif; ?><?php else : ?>
<h3><?php _e( 'Activate your Account', 'buddypress' ) ?></h3>
<?php do_action( 'bp_before_activate_content' ) ?>
<p><?php _e( 'Please provide a valid activation key.', 'buddypress' ) ?></p>
<form action="" method="get" class="standard-form" id="activation-form">
<label for="key"><?php _e( 'Activation Key:', 'buddypress' ) ?></label>
<input type="text" name="key" id="key" value="" /><p class="submit">
<input type="submit" name="submit" value="<?php _e( 'Activate', 'buddypress' ) ?> →" />
</p></form>
<?php endif; ?>
<?php do_action( 'bp_after_activate_content' ) ?>
</div><!-- .page -->
<?php do_action( 'bp_after_activation_page' ) ?>
</div><!-- .padder -->
</div><!-- #content --><?php locate_template( array( 'sidebar.php' ), true ) ?>
<?php get_footer(); ?>
Wie mache ich das jetzt genau ? :S