説明
mywp_post
ショートコードは現在の投稿情報または特定の投稿情報を取得できます。
使い方
このショートコードは投稿IDまたは現在の投稿ID、と “field” 属性が必要です。
[mywp_post current="1" field="****"]
または
[mywp_post post_id="*" field="****"]
属性
field=”id“
投稿IDを取得します。
[mywp_post current="1" field="id"]
結果
1
field=”title“
投稿のタイトルを取得します。
[mywp_post current="1" field="title"]
結果
Hello world
field=”post_type“
投稿タイプを取得します。
[mywp_post current="1" field="post_type"]
結果
post
field=”post_status“
投稿の状態(ステータス)を取得します。
[mywp_post current="1" field="post_status"]
結果
publish
field=”edit_link“
投稿の編集用リンクを取得します。
[mywp_post current="1" field="edit_link"]
結果
https://example.com/wp-admin/post.php?post=***&action=edit
current=”1“
現在の投稿の情報を取得します。
[mywp_post current="1"]
post_id=”****“
特定の投稿の情報を取得します。
[mywp_post post_id="1"]
This Post Has 0 Comments