ผู้เขียน หัวข้อ: ฟังก์ชั่นพื้นฐาน Wordpress  (อ่าน 1598 ครั้ง)

0 สมาชิก และ 1 บุคคลทั่วไป กำลังดูหัวข้อนี้

ออฟไลน์ smf

  • [color=green][i]"ถ้าคุณไม่สามารถอธิบายอย่างง่ายๆ ให้คนอื่นเข้าใจได้แล้วล่ะก็ แสดงว่าคุณยังเข้าใจมันไม่ดีพอ"[/i][/color]
  • Administrator
  • Hero Member
  • *****
  • กระทู้: 1,368
  • พอยท์: 5
    • ดูรายละเอียด
    • pordoo.com
    • อีเมล์
ฟังก์ชั่นพื้นฐาน Wordpress
« เมื่อ: 5 กันยายน 2016, 17:46:58 »
คำสั่งคำอธิบาย
the_title();แสดงหัวข้อ
the_ID();แสดงไอดี
echo($post->post_name);แสดงslug
the_content();แสดงเนื้อหาแบบเต็ม
the_excerpt();แสดงเนื้อแบบตัดทอน
the_post_thumbnail();แสดงรูปพิเศษ(featured)
echo get_the_date();แสดงวันที่ปัจจุบัน
echo get_the_time();แสดงเวลาปัจจุบัน
edit_post_link();แสดงปุ่มแก้ไข
the_permalink();แสดงurlปัจจุบัน
get_template_directory_uri();แสดงurlของธีมส์
bloginfo('stylesheet_directory');แสดงurlของธีมส์
echo esc_url( home_url( '/' ) );แสดงurlหน้าหลักของเว็บไซต์
the_author();แสดงผู้เขียน
the_author_meta('description');แสดงข้อมูลผู้เขียน
echo get_avatar();แสดงรูปภาพของผู้เขียน
the_category(', ');แสดงหมวดหมู่
echo category_description();แสดงรายละเอียดของหมวดหมู่
the_tags('Tags: ', ',' , ' ');แสดงคำสำสัญ
the_taxonomies( array('template' => '%s: %l') );แสดงหมวดหมู่taxonomies
posts_nav_link(' ',' ',' Previous');แสดงปุ่มโพสก่อนหน้า
posts_nav_link(' ','Next',' ');แสดงปุ่มโพสถัดไป
get_search_form();แสดงฟอร์มค้นหา
bloginfo( 'name' );แสดงหัวข้อเว็บไซต์
bloginfo( 'description' );แสดงคำโปรยเว็บไวต์

ที่มา: http://www.beanthemes.com/knowledge/command-wordpress/