Guest User

Untitled

a guest
Jun 21st, 2018
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. function shortcode_company_milestone($atts){
  2. $atts = shortcode_atts(array(
  3. 'year' => '2017'
  4. ), $atts );
  5.  
  6. $milestone = get_page_by_title($atts['year'], OBJECT, 'milestone');
  7.  
  8. return apply_filters('the_content', $milestone->post_content );
  9. }
Add Comment
Please, Sign In to add comment