" . $value . "
";
- }
- }
- ?>
+
- term_id ) ) . "' class='btn-small btn-info'> " . $category->cat_name . "";
- } ?>
- term_id ) ) . "' class='btn-small btn-primary'> " . $tag->name . " ";
- }
- } ?>
-
+
diff --git a/components/article/breadcrumb.php b/components/article/breadcrumb.php
new file mode 100644
index 0000000..b1cebd0
--- /dev/null
+++ b/components/article/breadcrumb.php
@@ -0,0 +1,10 @@
+
+
+
diff --git a/components/article/description.php b/components/article/description.php
new file mode 100644
index 0000000..c1aabe1
--- /dev/null
+++ b/components/article/description.php
@@ -0,0 +1,9 @@
+ $value ) {
+ echo " " . $value . "
";
+ }
+ }
+?>
diff --git a/components/article/flags.php b/components/article/flags.php
new file mode 100644
index 0000000..072d66e
--- /dev/null
+++ b/components/article/flags.php
@@ -0,0 +1,9 @@
+ID, 'flag');
+if ($flags) {
+ foreach( $flags as $flag ) {
+ $term_meta = get_option( "taxonomy_term_$flag->term_id" );
+ echo " ";
+ }
+} ?>
diff --git a/components/article/terms.php b/components/article/terms.php
new file mode 100644
index 0000000..ab35bed
--- /dev/null
+++ b/components/article/terms.php
@@ -0,0 +1,13 @@
+term_id ) ) . "' class='btn-small btn-info'> " . $category->cat_name . "";
+ }
+
+ $tags = get_the_tags();
+ if ($tags) {
+ foreach( $tags as $tag ) {
+ echo " " . $tag->name . " ";
+ }
+ }
+?>