Suporte » Temas e templates » alterar rodapé wordexpress

A visualizar 5 respostas - de 1 a 5 (de um total de 5)
  • Talvez possa usar o Editor do WordPress na secção Apresentação e procurar o ficheiro Rodapé (footer.php), e editar esse ficheiro para remover esse texto.

    Thread Starter paulo montez

    (@paulo-montez)

    Obrigado, mas aparece o seguinte abaixo, como devo alterar visto que sou (muito) iniciante ?

    <?php
    /**
    * The template for displaying the footer.
    *
    * Contains the closing of the id=main div and all content after
    *
    * @package WordPress
    * @subpackage Twenty_Eleven
    * @since Twenty Eleven 1.0
    */
    ?>

    </div><!– #main –>

    <footer id=”colophon” role=”contentinfo”>

    <?php
    /* A sidebar in the footer? Yep. You can can customize
    * your footer with three columns of widgets.
    */
    if ( ! is_404() )
    get_sidebar( ‘footer’ );
    ?>

    <div id=”site-generator”>

    Thread Starter paulo montez

    (@paulo-montez)

    ups, este é que está completo :

    <?php
    /**
    * The template for displaying the footer.
    *
    * Contains the closing of the id=main div and all content after
    *
    * @package WordPress
    * @subpackage Twenty_Eleven
    * @since Twenty Eleven 1.0
    */
    ?>

    </div><!– #main –>

    <footer id=”colophon” role=”contentinfo”>

    <?php
    /* A sidebar in the footer? Yep. You can can customize
    * your footer with three columns of widgets.
    */
    if ( ! is_404() )
    get_sidebar( ‘footer’ );
    ?>

    <div id=”site-generator”>
    <?php do_action( ‘twentyeleven_credits’ ); ?>
    ” title=”<?php esc_attr_e( ‘Semantic Personal Publishing Platform’, ‘twentyeleven’ ); ?>” rel=”generator”><?php printf( __( ‘Proudly powered by %s’, ‘twentyeleven’ ), ‘WordPress’ ); ?>
    </div>
    </footer><!– #colophon –>
    </div><!– #page –>

    <?php wp_footer(); ?>

    </body>
    </html>

    Algo do género:

    <?php
    /**
     * The template for displaying the footer.
     *
     * Contains the closing of the id=main div and all content after
     *
     * @package WordPress
     * @subpackage Twenty_Eleven
     * @since Twenty Eleven 1.0
     */
    ?>
    
    	</div><!-- #main -->
    
    	<footer id="colophon" role="contentinfo">
    
    			<?php
    				/* A sidebar in the footer? Yep. You can can customize
    				 * your footer with three columns of widgets.
    				 */
    				if ( ! is_404() )
    					get_sidebar( 'footer' );
    			?>
    
    			<div id="site-generator">
    				<?php do_action( 'twentyeleven_credits' ); ?>
    				<div>&copy; Copyright <?php echo date ('Y'); ?> - Todos os Direitos Reservados</div>
    			</div>
    	</footer><!-- #colophon -->
    </div><!-- #page -->
    
    <?php wp_footer(); ?>
    
    </body>
    </html>
    Thread Starter paulo montez

    (@paulo-montez)

    Obrigado

A visualizar 5 respostas - de 1 a 5 (de um total de 5)
  • O tópico ‘alterar rodapé wordexpress’ está fechado a novas respostas.