Lines Matching refs:title

309             if ((end($this->namespace) === \SimplePie\SimplePie::NAMESPACE_ATOM_03 && in_array(end($this->element), ['title', 'tagline', 'copyright', 'info', 'summary', 'content']) && isset($attribs['']['mode']) && $attribs['']['mode'] === 'xml')
310 || (end($this->namespace) === \SimplePie\SimplePie::NAMESPACE_ATOM_10 && in_array(end($this->element), ['rights', 'subtitle', 'summary', 'info', 'title', 'content']) && isset($attribs['']['type']) && $attribs['']['type'] === 'xhtml')
311 || (end($this->namespace) === \SimplePie\SimplePie::NAMESPACE_RSS_20 && in_array(end($this->element), ['title']))
312 || (end($this->namespace) === \SimplePie\SimplePie::NAMESPACE_RSS_090 && in_array(end($this->element), ['title']))
313 || (end($this->namespace) === \SimplePie\SimplePie::NAMESPACE_RSS_10 && in_array(end($this->element), ['title']))) {
442 // Also set the feed title and store author from the h-feed if available.
456 $title = '';
473 $title = $entry['properties']['name'][0];
474 if (isset($title['value'])) {
475 $title = $title['value'];
477 $item['title'] = [['data' => $title]];
545 // element. Use this to replace title with a strip_tags version so
546 // that alt text from images is not included in the title.
547 if ($entry['properties']['content'][0]['value'] === $title) {
548 $title = strip_tags($entry['properties']['content'][0]['html']);
549 $item['title'] = [['data' => $title]];
587 // The title and description are set to the empty string to represent
590 $item['title'] = [['data' => '']];
604 // Use the name given for the h-feed, or get the title from the html.
607 } elseif ($position = strpos($data, '<title>')) {
611 if (preg_match('/<title>(.+)<\/title>/', $check, $matches)) {
616 ['link' => $link, 'image' => $image, 'title' => $feed_title,