Quantcast
Channel: MyBB Community Forums - Tutorials
Viewing all articles
Browse latest Browse all 690

[Core Mod] How to get title tag on posts (vB Style)

$
0
0
1. Open your MYBB_ROOT/inc/class_parser.php
2. Find function mycode_parse_url_callback1 (around line 973)
3. Replace all with:

PHP Code:
    function mycode_parse_url_callback1($matches)
    {
        if(!isset(
$matches[3]))
        {
            
$matches[3] = '';
        }
        
        
$urlContents file_get_contents($matches[1].$matches[2]);
        
preg_match("/<title>(.*)<\/title>/i"$urlContents$hehu);
        
        
$title $hehu[1];
        return 
$this->mycode_parse_url($matches[1].$matches[2], $title);
    } 

Demo:
[Image: 61Cqt.png]
[Image: 61CrJ.png]

Viewing all articles
Browse latest Browse all 690

Trending Articles