pexels-photo-546819-1-1.jpeg

contoh skrip untuk membuat landing page di WordPress

<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>Landing Page WordPress</title>
  <style>
    /* Gaya CSS khusus untuk landing page */
    body {
      font-family: Arial, sans-serif;
      background-color: #f5f5f5;
      text-align: center;
    }
    .container {
      max-width: 800px;
      margin: 0 auto;
      padding: 40px;
      background-color: #fff;
      border-radius: 5px;
      box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1);
    }
    h1 {
      font-size: 28px;
      margin-bottom: 20px;
    }
    p {
      font-size: 18px;
      margin-bottom: 30px;
    }
    .cta-button {
      display: inline-block;
      padding: 10px 20px;
      background-color: #007bff;
      color: #fff;
      font-size: 16px;
      text-decoration: none;
      border-radius: 4px;
    }
  </style>
</head>
<body>
  <div class="container">
    <h1>Welcome to Our Landing Page</h1>
    <p>Thank you for visiting our website. Learn more about our amazing products and services.</p>
    <a href="#contact" class="cta-button">Contact Us</a>
  </div>

  <div id="contact">
    <h2>Contact Us</h2>
    <p>Please fill out the form below to get in touch with us.</p>
    <?php echo do_shortcode('[contact-form-7 id="123" title="Contact Form"]'); ?>
  </div>

  <!-- Atau Anda bisa menambahkan formulir kontak langsung menggunakan HTML jika tidak menggunakan Contact Form 7 -->
  <!-- <div id="contact">
    <h2>Contact Us</h2>
    <p>Please fill out the form below to get in touch with us.</p>
    <form action="your-action-url" method="POST">
      <input type="text" name="name" placeholder="Your Name" required>
      <input type="email" name="email" placeholder="Your Email" required>
      <textarea name="message" placeholder="Your Message" required></textarea>
      <button type="submit">Send Message</button>
    </form>
  </div> -->
</body>
</html>

Untuk menggunakan skrip diatas, ikuti langkah-langkah sebagai berikut:

  1. Buka halaman WordPress Anda dan buka editor tema Anda (misalnya, melalui Appearance > Theme Editor).
  2. Buat file baru dan beri nama landing-page.php.
  3. Salin dan tempelkan skrip di atas ke dalam file landing-page.php.
  4. Simpan file tersebut dan keluar dari editor tema.
  5. Kembali ke halaman WordPress dan buka Halaman > Tambah Baru.
  6. Buat halaman baru untuk landing page Anda dan beri judul yang sesuai.
  7. Di bagian atribut halaman (Page Attributes) di sebelah kanan, cari opsi Template dan pilih “Landing Page”.
  8. Klik “Publikasikan” untuk menerbitkan halaman landing page Anda.

Leave A Comment

Your email address will not be published.