Rssposter and tags

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • kovalsky
    Member
    • Nov 2016
    • 35
    • 5.2.x

    Rssposter and tags

    I want to add in the RSS flow <tags>tag1, tag2, tag3</tags> add tags to the article. Even if it is not possible to create new tags, but to bind the post to the existing one.

    Which file is responsible for parsing an RSS stream?
    Where and how to form SQL query privacy tags to the post?
  • kovalsky
    Member
    • Nov 2016
    • 35
    • 5.2.x

    #2
    Parse feed I could. It remains to understand which function will process the tags.

    PHP Code:
                $normalised_item = array(
                    
    'link'                => $this->fetch_replacement('link',                $item),
                    
    'description'        => $this->fetch_replacement('description',        $item),
                    
    'title'                => $this->fetch_replacement('title',            $item),
                    
    'id'                => $this->fetch_replacement('id',                $item),
                    
    'date'                => $this->fetch_replacement('date',                $item),
                    
    'enclosure_link'    => $this->fetch_replacement('enclosure_date',    $item),
                    
    'content'            => $this->fetch_replacement('content',            $item),
                    
    'tag'                => $this->fetch_replacement('tag',                $item), //kovalsky  {feed:tag}
                    
    'author'            => $this->fetch_replacement('author',            $item)
                ); 

    Comment

    • Wayne Luke
      vBulletin Technical Support Lead
      • Aug 2000
      • 73927

      #3
      This is outside the scope of technical support. You should ask this over at www.vbulletin.org.

      If you feel this should be a standard feature, you can post a request here: http://tracker.vbulletin.com/secure/...91&issuetype=7

      Translations provided by Google.

      Wayne Luke
      The Rabid Badger - a vBulletin Cloud demonstration site.
      vBulletin 5 API

      Comment

      Related Topics

      Collapse

      Working...