• Hello,

    I want to link the image file inside my theme i did this <?php echo get_bloginfo(‘template_url’) ?>
    img/carsol2.jpg” alt=”Header” width=”1200″ height=”700″>

    But it did not work .

    And also to link Bootsratp file <link rel=”stylesheet” href=”<?php echo get_template_directory_uri() ?>css/bootstrap.min.css”> it didnot work .

    Any Advices

Viewing 5 replies - 1 through 5 (of 5 total)
  • Here is the correct method

    `/img/carsol2.jpg” alt=”Header” width=”1200″ height=”700″ />

    <link rel=”stylesheet” href=”<?php bloginfo(‘template_directory’); ?>/css/bootstrap.min.css”>

    Here is the correct method

    For Image
    <img src="<?php bloginfo('template_directory'); ?>/img/carsol2.jpg" alt="Header" width="1200" height="700" />

    For CSS
    <link rel="stylesheet" href="<?php bloginfo('template_directory'); ?>/css/bootstrap.min.css">

    Thread Starter iyad87

    (@iyad87)

    Dear, @jaiveerrawat121

    Thank you alot for this help,

    What i am doing is to Convert my Responsive Wibsite to WordPress Theme, I am really sufring,

    Do you Know a good way to Convert it ?

    Best regards

    Welcome!

    Please checkout given link HTML to WordPress for conversion.

    Hope this helps.

    Thread Starter iyad87

    (@iyad87)

    Ok Many thanx,

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘How to linke the Image Files and Bootsrtap file’ is closed to new replies.