We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents ac47282 + 299dbc4 commit 0d97158Copy full SHA for 0d97158
1 file changed
data/wordpress-theme-development.json
@@ -234,6 +234,26 @@
234
"definition": "সাইটের আর্কাইভ লিস্ট",
235
"code": "wp_get_archives();"
236
},
237
+ {
238
+ "definition": "একটি পোস্ট বা পৃষ্ঠা ট্র্যাশে বা মুছে ফেলে",
239
+ "code": "wp_delete_post();"
240
+ },
241
242
+ "definition": "একটি পোস্ট সন্নিবেশ বা আপডেট করার জন্য",
243
+ "code": "wp_insert_post();"
244
245
246
+ "definition": "পোস্টের স্থিতি পরিবর্তন করে একটি পোস্ট প্রকাশ করার জন্য",
247
+ "code": "wp_publish_post();"
248
249
250
+ "definition": "একটি পোস্ট বা পৃষ্ঠা ট্র্যাশে স্থানান্তরিত করার জন্য",
251
+ "code": "wp_trash_post();"
252
253
254
+ "definition": "নতুন পোস্ট ডেটা সহ একটি পোস্ট আপডেট করার জন্য",
255
+ "code": "wp_update_post();"
256
257
{
258
"definition": "পরবর্তী এবং আগের পোস্ট লিঙ্ক",
259
"code": "posts_nav_link();"
0 commit comments