$data_rows = array();
$row = array(
0 => get_the_title(), //Post Title
1 => get_the_content(), //Post Content
2 => $image[0], //Post Featured Image
3 => get_the_date(), //Post Date
4 => get_the_author(), //Post Author
5 => $post_categories, //Post Category
6 => $post_tag, //Post Tags
7 => get_post_status(), //Post Status
);
$data_rows[] = $row;
現在這個數組中的格式一樣取三列......
Title1 - Content1 - Image1 - Date1 - Author Name1 - Category1 - Tag1 - Status1
現在,我想刪除單行數據項「
Title1
「,」Title2
「,」Title3
「通過使用key[0]
,該怎麼做?
我也使用「unset()
」,但它並沒有幫助。
是的,用過的也。 array_splice也只刪除一行「標題」。這不是刪除「標題1」和「標題2」 –
@Mukiikumar你想刪除什麼?每個行的標題?或基於標題本身的行? –
來自每行的所有標題。 –