Changeset 2068298
- Timestamp:
- 04/13/2019 05:03:47 PM (7 years ago)
- Location:
- tagbee-automatic-post-tagging
- Files:
-
- 9 added
- 4 edited
-
tags/1.0.6 (added)
-
tags/1.0.6/index.php (added)
-
tags/1.0.6/lib (added)
-
tags/1.0.6/lib/.gitignore (added)
-
tags/1.0.6/lib/tagbee-auto-proposals-request.php (added)
-
tags/1.0.6/lib/tagbee-client.php (added)
-
tags/1.0.6/lib/tagbee-update-tags-request.php (added)
-
tags/1.0.6/readme.txt (added)
-
tags/1.0.6/tagbee-post-tagger.php (added)
-
trunk/lib/tagbee-auto-proposals-request.php (modified) (2 diffs)
-
trunk/lib/tagbee-request-interface.php (modified) (1 diff)
-
trunk/readme.txt (modified) (1 diff)
-
trunk/tagbee-post-tagger.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
tagbee-automatic-post-tagging/trunk/lib/tagbee-auto-proposals-request.php
r1976058 r2068298 47 47 protected $contentMetaKeywords; 48 48 49 /** 50 * @var string 51 */ 52 protected $permalink; 53 49 54 public function __construct($data, $tags, $meta) 50 55 { … … 54 59 $this->contentBody = $data->post_content; 55 60 $this->contentCategory = $this->createCategoriesString($data); 61 $this->permalink = get_post_permalink($data->ID); 56 62 57 63 $this->tags = $tags; -
tagbee-automatic-post-tagging/trunk/lib/tagbee-request-interface.php
r1976058 r2068298 18 18 'category' => $this->contentCategory, 19 19 'meta_description' => $this->contentMetaDescription, 20 'meta_keywords' => $this->contentMetaKeywords 20 'meta_keywords' => $this->contentMetaKeywords, 21 'reference' => 'Wordpress ' . get_bloginfo('version'), 22 'permalink' => $this->permalink 21 23 ]; 22 24 } -
tagbee-automatic-post-tagging/trunk/readme.txt
r2015559 r2068298 4 4 Tags: auto tags, posts, seo, tags, tagging 5 5 Requires at least: 3.7 6 Tested up to: 5. 0.36 Tested up to: 5.1.1 7 7 License: GPLv3 or later 8 8 License URI: https://www.gnu.org/licenses/gpl-3.0.html -
tagbee-automatic-post-tagging/trunk/tagbee-post-tagger.php
r2052211 r2068298 28 28 */ 29 29 defined('ABSPATH') or die('Wordpress Plugin'); 30 define('TAGBEE_VERSION', "1.0. 5");30 define('TAGBEE_VERSION', "1.0.6"); 31 31 define("TAGBEE_NAMESPACE", "tagbee"); 32 32 define("TAGBEE_INNER_PROPOSAL_ENDPOINT", "proposals");
Note: See TracChangeset
for help on using the changeset viewer.