The following warnings occurred:
Warning [2] Undefined array key "allowautourl" - Line: 584 - File: inc/class_parser.php PHP 8.1.31 (Linux)
File Line Function
/inc/class_error.php 153 errorHandler->error
/inc/class_parser.php 584 errorHandler->error_callback
/inc/class_parser.php 228 postParser->parse_mycode
/printthread.php 203 postParser->parse_message
Warning [2] Undefined array key "allowautourl" - Line: 584 - File: inc/class_parser.php PHP 8.1.31 (Linux)
File Line Function
/inc/class_error.php 153 errorHandler->error
/inc/class_parser.php 584 errorHandler->error_callback
/inc/class_parser.php 228 postParser->parse_mycode
/printthread.php 203 postParser->parse_message
Warning [2] Undefined array key "allowautourl" - Line: 584 - File: inc/class_parser.php PHP 8.1.31 (Linux)
File Line Function
/inc/class_error.php 153 errorHandler->error
/inc/class_parser.php 584 errorHandler->error_callback
/inc/class_parser.php 228 postParser->parse_mycode
/printthread.php 203 postParser->parse_message
Warning [2] Undefined array key "allowautourl" - Line: 584 - File: inc/class_parser.php PHP 8.1.31 (Linux)
File Line Function
/inc/class_error.php 153 errorHandler->error
/inc/class_parser.php 584 errorHandler->error_callback
/inc/class_parser.php 228 postParser->parse_mycode
/printthread.php 203 postParser->parse_message



GetSimple Support Forum
Custom title tags - Printable Version

+- GetSimple Support Forum (http://get-simple.info/forums)
+-- Forum: GetSimple (http://get-simple.info/forums/forumdisplay.php?fid=3)
+--- Forum: Developer Discussions (http://get-simple.info/forums/forumdisplay.php?fid=8)
+--- Thread: Custom title tags (/showthread.php?tid=1645)



Custom title tags - Carlos - 2011-05-03

Custom Title Tags:
An imaginary plugin for SEO and all that.

Usage:

Copy customtitletags.php to your plugins folder.

Set your favourite value for:
- Sitewide page title tag (default: "%pagetitle% - %sitename%")
(in Setup, or in the Pages sidebar)

You can also define custom title tags for a specific page (overriding the site default) in the editor options -> Custom title tag (empty for default)

You can use the following variables:
%sitename% Name of the website (as defined in GetSimple setup)
%pagetitle% Title of the current page (as defined in the editor - the one display in the page body)
%parenttitle% Title of the parent's page
...

Then edit your template file(s) file and replace the whole <title>...</title> line by this:

Code:
<title><?php get_custom_title_tag(); ?></title>


.......

This plugin does not exist (and AFAIK there isn't one that does this). I have it on my mind but never find the time to do it (will do someday if no one does something equivalent before...)

Don't know if Chris would like to have something like this in the core...


Custom title tags - ccagle8 - 2011-06-12

i think its a necessary feature for SEO pruposes, but not sure it should be added to the core - based on expected low general population usage. I do think that if you were to develop this plugin, i would use it on all my GS powered sites though...


Custom title tags - ePirat - 2011-10-23

I've made a plugin which does what you explained: Support forum post and Plugin Page


Custom title tags - Carlos - 2011-12-17

ePirat Wrote:I've made a plugin which does what you explained: Support forum post and Plugin Page

Great! Thanks.