Skip to content

Instantly share code, notes, and snippets.

@epicallan
Last active August 29, 2015 14:15
Show Gist options
  • Save epicallan/a813eae4d32dff871395 to your computer and use it in GitHub Desktop.
Save epicallan/a813eae4d32dff871395 to your computer and use it in GitHub Desktop.
Making use of a wordpress loop in a class
<?php
/**
* Template Name: mytemplate-page
* Description: a template page using a class
*
*/
?>
<?php
$args = array(
"type"=>"post_type_name",
"taxonomy"=>"post_type_category",
"meta_id"=>"meta_id",
);
$obj = new ThemeClass($args);
$obj->getData();
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment