• Hi
    i started to learn word press. my footer is :

    <?php
    // File Security Check
    if ( ! empty( $_SERVER['SCRIPT_FILENAME'] ) && basename( __FILE__ ) == basename( $_SERVER['SCRIPT_FILENAME'] ) ) {
        die ( 'You do not have sufficient permissions to access this page!' );
    }
    ?>
    			<div class="hFooter"></div>
    		<!--</div>wrapper-->
    
        <footer>
          <div class="container footer_container">
            <div class="row">
              <div class="col-lg-12">
                  <p>? <?php echo date('Y');?>?<?php bloginfo('description'); ?></p>
              </div>
            </div>
          </div>
        </footer>
    		<?php  wp_footer();?>
    	</body>
    </html>

    i want to add one link (about us) and two email address in my footer. would u pls help me?

Viewing 5 replies - 1 through 5 (of 5 total)
  • You can Use HTML Link Tag.

    You can add this before the </body> tag:
    (use < here)a href=”link-of-your-about-us-page” (use > here) About Us (use < /a > here)
    Your_email1(at)yourdomain.com
    Your_email2(at)yourdomain.com

    To elaborate a bit on what @cookmorphosis suggested:

    <a href="/link-to-about-page">About Us</a>
    <a href="mailto:[email protected]">[email protected]</a>
    <a href="mailto:[email protected]">[email protected]</a>

    You can add these in to your code where you see fit, (if you want them between <footer></footer>, etc.)

    PS. There is a handy “code” button for writing or pasting code to this forum. Or just wrap your code in backticks ( ` )

    Thread Starter Sunde

    (@sunde)

    Thank you very much!It works but in fact i have 2 footer area in my web site!
    Somebody installed this template but i have not access to him now, and i have not worked before with wordpress. If you friends take a look to this site,will understand what i mean .
    https://www.sundedata.com
    in the end of the screen- before footer – there is an area that allocated to copy right.
    i need to add some link to some pages that i made before here.Such as
    about us
    contact us
    pricavy policy

    i made some of those pages such as about us.
    It is my pleasure if you can help me to do that.
    Have a good weekend !

    Thread Starter Sunde

    (@sunde)

    Hi ??
    I found how can i do that. but i have one question: how can i write all in one line
    ex: About us privacy policy contact us

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Add link to my footer’ is closed to new replies.