Advertisement
asadsuman

custom metabox

May 5th, 2014
152
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.21 KB | None | 0 0
  1. কাস্টম মেটাবক্স ওয়ার্ডপ্রেস
  2.  
  3. https://github.com/WebDevStudios/Custom-Metaboxes-and-Fields-for-WordPress
  4.  
  5. প্রথমে cnb নামে একটা ফোল্ডার করে তার মধ্যে সব ফাইল রাখতে হবে (ফোল্ডার যেকোনো নামেই হতে পারে)
  6.  
  7.  
  8. তারপর init ফাইলটা ফাংসানে কল করতে হবে যেমন,
  9.  
  10. //active custom_meta_box
  11. include_once( 'inc/cmb/init.php' );
  12.  
  13. তারপর custom_meta_box.php নামে একটা ফাইল করে তার মধ্যে যে মেতাবক্স যোগ হবে তার কোড লিখতে হবে।
  14. এবং এই ফাইলটাও ফাংসানে কল করতে হবে যেমন,
  15.  
  16. //custom_meta_box
  17.  
  18. include_once( 'inc/custom_meta_box.php' );
  19.  
  20. একটা উদাহরণ কোড এখানে দেওয়া হল,
  21.  
  22. <?php
  23.  
  24. function be_sample_metaboxes( $meta_boxes ) {
  25. $meta_boxes['test_metabox'] = array(
  26. 'id' => 'test_metabox',
  27. 'title' => 'portfolio ',
  28. 'pages' => array('portfolio'), // post type
  29. 'context' => 'normal',
  30. 'priority' => 'high',
  31. 'show_names' => true, // Show field names on the left
  32. 'fields' => array(
  33. array(
  34. 'name' => 'Portfolio Description ',
  35. 'desc' => 'field description (optional)',
  36. 'id' => 'portfolio_dres',
  37. 'type' => 'text'
  38. ),
  39. ),
  40. );
  41.  
  42. return $meta_boxes;
  43. }
  44. add_filter( 'cmb_meta_boxes', 'be_sample_metaboxes' );
  45.  
  46.  
  47. ?>
  48.  
  49.  
  50.  
  51. মেটাবক্স কল করতে (কাস্টম ফিল্ডের কলের মত)
  52.  
  53. <?php $portfolio_dres = get_post_meta($post->ID, 'portfolio_dres', true); ?>
  54.  
  55.  
  56.  
  57. <?php if ( $portfolio_dres ) : ?>
  58. <h4><a class="popup-with-zoom-anim" href="#small-dialog"><?php echo $portfolio_dres; ?></a></h4>
  59.  
  60.  
  61. <?php else : ?>
  62. <h4><a class="popup-with-zoom-anim" href="#small-dialog">Graphics Design</a></h4>
  63. <?php endif; ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement