diff --git plugins/content_types/page/page_title.inc plugins/content_types/page/page_title.inc
index cebd332..d94905a 100644
--- plugins/content_types/page/page_title.inc
+++ plugins/content_types/page/page_title.inc
@@ -17,7 +17,6 @@ $plugin = array(
   'icon' => 'icon_page.png',
   'description' => t('Add the page title as content.'),
   'category' => t('Page elements'),
-  'render last' => TRUE,
 );
 
 /**
@@ -26,15 +25,14 @@ $plugin = array(
  * Outputs the page title of the current page.
  */
 function ctools_page_title_content_type_render($subtype, $conf, $panel_args) {
+  $token = '<!-- ctools-page-title -->';
+  ctools_set_page_token($token, 'variable', 'title');
 
   $block = new stdClass();
-
-  $title = drupal_get_title();
-  if ($title) { 
+  if ($token) {
     // TODO: This should have a setting or something for the markup.
-    $block->content = '<h1>'. $title .'</h1>';
+    $block->content = '<h1>'. $token .'</h1>';
   }
 
   return $block;
-
-}
+}
\ No newline at end of file
