ฉันจะตรวจสอบได้อย่างไรว่าหน้าปัจจุบันเป็นหน้าคำศัพท์ทางด้านภาษีเช่นเดียวกับสิ่งที่ทำด้วยรหัสต่อไปนี้เพื่อตรวจสอบว่าหน้าปัจจุบันเป็นหน้าแรกหรือไม่?
if (drupal_is_front_page()) {
// The current page is the front page.
}
else {
// It is not the front page.
}