Viewing 1 replies (of 1 total)
  • Thread Starter josepharun

    (@josepharun)

    this is the Page.php for my website, if possible please help me
    <?php
    /**********************************************************************
    * PRESTIGE WORDPRESS EDITION
    * (Ideal For Business And Personal Use: Portfolio or Blog)
    *
    * File name:
    * page.php
    * Brief:
    * Theme default page template code
    * Author:
    * DigitalCavalry
    * Author URI:
    * https://themeforest.net/user/DigitalCavalry
    * Contact:
    * [email protected]
    ***********************************************************************/

    get_header();
    the_post();

    global $post;
    $pageid = $post->ID;

    $dccp = GetDCCPInterface();
    ?>

    <div class=”navigation-tree-container”>
    <?php dcf_naviTree($post->ID, 0); ?>
    </div>

    <div id=”content”>

    <?php
    echo ‘<div class=”page-width-920″>’;

    the_content();
    GetDCCPInterface()->getIGeneral()->renderWordPressPagination();

    if(comments_open($pageid))
    {
    echo ‘‘;
    comments_template();
    }

    ?>

    </div> <!– page-width-xx0 –>
    <div class=”clear-both”></div>
    </div> <!– content –>

    <?php
    get_footer();
    ?>

Viewing 1 replies (of 1 total)
  • The topic ‘Menu are not working’ is closed to new replies.