Title: &quot;Global&quot; theme development
Last modified: August 22, 2016

---

# "Global" theme development

 *  Resolved [mareebsiddiqui](https://wordpress.org/support/users/mareebsiddiqui/)
 * (@mareebsiddiqui)
 * [11 years, 7 months ago](https://wordpress.org/support/topic/global-theme-development/)
 * Right now in the plugin when I go to the targets tab I see that there is a separate
   section of “Theme Development”. In this there are several options but not the
   one that I am looking for. I want a “global” option so that the appointed/assigned
   user could see the notification(s) all the time as he logins into his dashboard.
   How can I do this, currently I use the “Full Page” option but with this the user
   only sees the notification if he is on that particular post. How can I make the
   appointed user see the notification always as he logins into his dashboard? Any
   type of help is appreciated. 🙂
 * Thanks.
 * [https://wordpress.org/plugins/project-tasks/](https://wordpress.org/plugins/project-tasks/)

Viewing 1 replies (of 1 total)

 *  Plugin Author [dreamsofmatter](https://wordpress.org/support/users/stratoponjak/)
 * (@stratoponjak)
 * [11 years, 7 months ago](https://wordpress.org/support/topic/global-theme-development/#post-5379454)
 * Yes, just put this in your theme’s functions.php file. Hope it helps!
 *     ```
       add_filter ( 'projekt_tasks_targets', 'add_general_theme_project_tasks_target');
   
       add_filter ( 'projekt_tasks_active_targets_on_post', 'add_general_theme_project_tasks_target', 1 );
   
       function add_general_theme_project_tasks_target ( $targets ) {
   
       	array_push ( $targets, array (
   
       		'target_type' 		=> 'spt_target_page_template', 
   
       		'target_id' 		=> 'theme_general', 
   
       		'target_category' 	=> 'Theme Development', 
   
       		'name' 			=> 'General', 
   
       		'shortening' 		=> 'T', 
   
       		'item_name' 		=> 'Theme Development', /* give this the name of your theme if you want to impress your clients :) */
   
       		'order' 			=> 0, 
   
       		'description' 		=> 'Connect this task to general theme development. This task will appear on every page.'
       	));
   
       	return $targets;
       }
       ```
   

Viewing 1 replies (of 1 total)

The topic ‘"Global" theme development’ is closed to new replies.

 * ![](https://s.w.org/plugins/geopattern-icon/project-tasks_e2e1da.svg)
 * [Project Tasks](https://wordpress.org/plugins/project-tasks/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/project-tasks/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/project-tasks/)
 * [Active Topics](https://wordpress.org/support/plugin/project-tasks/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/project-tasks/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/project-tasks/reviews/)

## Tags

 * [theme development](https://wordpress.org/support/topic-tag/theme-development/)

 * 1 reply
 * 2 participants
 * Last reply from: [dreamsofmatter](https://wordpress.org/support/users/stratoponjak/)
 * Last activity: [11 years, 7 months ago](https://wordpress.org/support/topic/global-theme-development/#post-5379454)
 * Status: resolved