Advertisement
Guest User

Untitled

a guest
Sep 19th, 2017
47
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.43 KB | None | 0 0
  1. $my_portfolio_1 = array(
  2.     'post_title' => 'Portfolio Example 1',
  3.     'post_content' => $portfolio_content_1,
  4.     'post_status' => 'publish',
  5.     'post_author' => 1,
  6.     'post_type' => 'portfolio'
  7. );
  8.  
  9. $this_portfolio_id_1 = wp_insert_post( $my_portfolio_1 );
  10.  
  11. update_post_meta( $this_portfolio_id_1, "featured_portfolio_item", "1" );
  12. wp_set_post_terms( $this_portfolio_id_1, $array('friendly', 'premium', 'themes', 'wordpress'), 'type', true );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement