TokoDaring.Com – eCommerce Coding (WordPress Coding). Buat dan kustom sendiri website eCommerce WordPress anda agar lebih stylist dan interaktif. Tutorial pemrograman HTML, CSS dan JS serta WordPress dan WooCommerce hook.
Table of Contents
TokoDaring.Com – Where Cooking & Coding Are Met!
Di sela-sela kami menjalankan bisnis daring, kami senang memasak dan ngoprek website eCommerce WordPress. Buat dan terbitkan artikel tentang pemrograman di website kami via frontend editor yang interaktif.
eCommerce Coding
HTML
HTML
Bahasa Markup Untuk Membuat Website
<!DOCTYPE html>
<html>
<title>HTML Tutorial</title>
<body>
<h1>Hello World</h1>
<p>Halaman Tutorial HTML wpJakarta.</p>
</body>
</html>
CSS
CSS
Bahasa Untuk Styling Halaman Website
body {
background-color: lightblue;
}
h1 {
color: white;
text-align: center;
}
p {
font-family: verdana;
font-size: 20px;
}
Javascript
Javascript
Bahasa Untuk Membuat Website Interaktif
<button onclick="myFunction()">Click Me!</button>
<script>
function myFunction() {
var x = document.getElementById("demo");
x.style.fontSize = "25px";
x.style.color = "red";
}
</script>
PHP: Hypertext Preprocessor
PHP adalah bahasa skrip server, dan alat yang ampuh untuk membuat halaman Web yang dinamis dan interaktif. PHP adalah alternatif yang banyak digunakan, gratis, dan efisien untuk pesaing seperti ASP Microsoft. PHP 8 adalah rilis versi terbaru (stable).
PHP
Bahasa Pemrograman Server Website
<!DOCTYPE html>
<html>
<body>
<h1>My first PHP page</h1>
<?php
echo "Hello World!";
?>
</body>
</html>
WordPress Coding (Hooks)
Tentang WordPress Hooks, lihat di sini.
WordPress Hooks
Referensi script, fungsi & hooks WordPress
WooCommerce Hooks
Referensi script & hooks WooCommerce