lundi 7 août 2017

echo php variabel in HTML(wordpress)

I have created a custom wordpress post type everything works but my client asked me to insert a function that doenst show the button if the link field is empty that is also working but when I want to display the tekst or link the part where the php is inserted just doesnt shows up what am I doing wrong

I am able to get the data on other parts of this php file but not in this part of the page

   <?php 
   $linktitle = $day_aray=get_field("under_shoe_button_title");
   $linkexist = get_field("under_shoe_button_link");

    echo($linktitle);
   if (empty($linkexist)) {

    echo '<html> <p></p></html>' ;

   }

   else {

    echo '<html>
    <a href="google.nl"  class="button primary is-bevel box-shadow-3 box-shadow-4-hover expand" style="border-radius:5px;" 
    </html> <?php echo($linktitle); ?> <html><span></span>
  <i class="icon-shopping-cart"></i></a>
</html>';


   }



     ?>

Aucun commentaire:

Enregistrer un commentaire