Skip to content
Snippets Groups Projects
Commit cbcea871 authored by Erick Hitter's avatar Erick Hitter
Browse files

Retreive supported keys and begin approach to build output

parent b8bbfb6c
No related branches found
No related tags found
1 merge request!1Basic support
...@@ -40,12 +40,56 @@ class ETH_Escape_HeadSpace2 { ...@@ -40,12 +40,56 @@ class ETH_Escape_HeadSpace2 {
} }
/** /**
* Register actions and filters * Class properties
*/
private $hs_keys = array(
'_headspace_description',
'_headspace_metakey',
'_headspace_noindex',
);
/**
* Register plugin's hooks
* *
* @return null * @return null
*/ */
private function __construct() { private function __construct() {
// add_action( 'wp_head', array( $this, 'action_wp_head' ) );
}
/**
*
*/
public function action_wp_head() {
// Applies only to individual post objects
if ( ! is_singular() ) {
return;
}
// Check for HS data
$hs_data = array();
foreach ( $this->hs_keys as $hs_key ) {
$value = get_post_meta( get_the_ID(), $hs_key, true );
if ( ! empty( $value ) ) {
$hs_data[ $hs_key ] = $value;
}
}
// Bail if no HS data exists for this post
if ( empty( $hs_data ) ) {
return;
}
// Build output
foreach ( $hs_data as $hs_key => $hs_value ) {
switch( $hs_key ) {
default :
continue;
break;
}
}
} }
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment