Sid Gifari File Manager
🏠 Root
/
home1
/
immorth6
/
public_html
/
wearmoda
/
wp-content
/
plugins
/
json-api
/
models
/
Editing: tag.php
<?php class JSON_API_Tag { var $id; // Integer var $slug; // String var $title; // String var $description; // String function JSON_API_Tag($wp_tag = null) { if ($wp_tag) { $this->import_wp_object($wp_tag); } } function import_wp_object($wp_tag) { $this->id = (int) $wp_tag->term_id; $this->slug = $wp_tag->slug; $this->title = $wp_tag->name; $this->description = $wp_tag->description; $this->post_count = (int) $wp_tag->count; } } ?>
Save
Cancel