Search:

Search: Search took 1.00 seconds.

  1. Thread: Title Style

    by bluenotes
    Replies
    4
    Views
    340

    open page.php and change (Good idea to add this...

    open page.php and change (Good idea to add this page to your child theme):



    <header>
    <h1><a href="<?php the_permalink(); ?>" rel="bookmark"><?php the_title(); ?></a></h1>
    </header>

    ...
  2. Replies
    10
    Views
    1,769

    Just remove the sidebar from your page.php and...

    Just remove the sidebar from your page.php and make it a template:

    <?php
    // Template Name: full
    ?>
    <div id="main">

    <?php while ( have_posts() ) : the_post(); ?>
    <article id="post-<?php...
  3. Replies
    22
    Views
    1,427

    Dimitris Found a workaround, not very handy but it works....

    Found a workaround, not very handy but it works. First I allowed administrators backend editing of the listing by adding a line to admin.php in includes/admin/admin.php

    find around line 160...
Results 1 to 3 of 3