wp_dashboard_primary()
- Since
- 2.7.0, 4.8.0
- Source
wp-admin/includes/dashboard.php:1523
Compatibility
- WordPress
- since 4.8.0
- PHP
- 7.4–8.6-dev
- 6.7.7
- 6.8.8
- 6.9.7
- 7.0.4
- 7.1.0
Present in every tracked release (6.7.7 to 7.1.0), and compiles on PHP 7.4 through 8.6-dev.
Performance profile
How much work a call to wp_dashboard_primary() does, and what it touches: the algorithmic scaling, the Zend instruction count per call across PHP versions, the hooks it hands control to, and the core code that calls it. Measured from the compiled opcodes, not a stopwatch, so every number is identical on any machine running the same PHP version, and every function in core is ranked by cost.
- Cost class
- Moderate
- Scaling
- Constant
- Instructions
- 69
- Plugin surface
- 7 hooks
- Called by
- 2
Reads stored settings via get_option(), cached per request but not free on a cold cache.
No loop in the body: the same number of instructions runs whatever you pass in.
Executed per call on PHP 8.5. The body compiles to 69.
Third-party callbacks on 'dashboard_primary_link', 'dashboard_primary_feed', 'dashboard_primary_title' run inside this call, and their cost is not bounded by anything here.
2 places in core call this, so the cost is paid more often than your own code shows.
What it touches
- hookthird-party callbacks
apply_filters()called directly - optionoption read or write
get_option()one call below wp_dashboard_primary() - transienttransient
get_transient()one call below wp_dashboard_primary()
Further down the call graph this can also reach cache, serialize and query. Those are the worst case, several calls deep and usually down an error path, not what a normal call pays.
What one call costs · 1 distinct outcome
One number would be a lie: the work depends on which branch runs. These are every distinct cost wp_dashboard_primary() can have, taken from its control-flow graph on PHP 8.5.
| When | Instructions | Calls it makes |
|---|---|---|
| always | 69 | __(), apply_filters(), __(), apply_filters(), __(), apply_filters(), __(), apply_filters(), __(), apply_filters(), __(), apply_filters(), apply_filters(), wp_dashboard_cached_rss_widget() |
Across PHP versions
Compiles the same on PHP 7.4, 8.1, 8.2, 8.3, 8.4, 8.5 and 8.6-dev: 69 instructions, 69 executed per call, 0 branches. The work does not change between versions.
An instruction is not a fixed amount of time, so a matching count is not necessarily the same speed; what it rules out is a difference in the work itself.
Hooks and filters fired · 7
7 hooks fire while wp_dashboard_primary() runs, in this order:
- apply_filters( dashboard_primary_link )filterline 1534 (+11 into the body)
Filters the primary link URL for the 'WordPress Events and News' dashboard widget.
- apply_filters( dashboard_primary_feed )filterline 1543 (+20 into the body)
Filters the primary feed URL for the 'WordPress Events and News' dashboard widget.
- apply_filters( dashboard_primary_title )filterline 1552 (+29 into the body)
Filters the primary link title for the 'WordPress Events and News' dashboard widget.
- apply_filters( dashboard_secondary_link )filterline 1567 (+44 into the body)
Filters the secondary link URL for the 'WordPress Events and News' dashboard widget.
- apply_filters( dashboard_secondary_feed )filterline 1580 (+57 into the body)
Filters the secondary feed URL for the 'WordPress Events and News' dashboard widget.
- apply_filters( dashboard_secondary_title )filterline 1593 (+70 into the body)
Filters the secondary link title for the 'WordPress Events and News' dashboard widget.
- apply_filters( dashboard_secondary_items )filterline 1602 (+79 into the body)
Filters the number of secondary link items for the 'WordPress Events and News' dashboard widget.
Uses · 3
- apply_filters()Calls the callback functions that have been added to a filter hook.
- __()Retrieves the translation of $text.
- wp_dashboard_cached_rss_widget()Checks to see if all of the feed url in $check_urls are cached.
Used by · 2
- wp_ajax_dashboard_widgets()Handles dashboard widgets via AJAX.
- wp_dashboard_events_news()Renders the Events and News dashboard widget.
Source code
function wp_dashboard_primary() { $feeds = array( 'news' => array( /** * Filters the primary link URL for the 'WordPress Events and News' dashboard widget. * * @since 2.5.0 * * @param string $link The widget's primary link URL. */ 'link' => apply_filters( 'dashboard_primary_link', __( 'https://wordpress.org/news/' ) ), /** * Filters the primary feed URL for the 'WordPress Events and News' dashboard widget. * * @since 2.3.0 * * @param string $url The widget's primary feed URL. */ 'url' => apply_filters( 'dashboard_primary_feed', __( 'https://wordpress.org/news/feed/' ) ), /** * Filters the primary link title for the 'WordPress Events and News' dashboard widget. * * @since 2.3.0 * * @param string $title Title attribute for the widget's primary link. */ 'title' => apply_filters( 'dashboard_primary_title', __( 'WordPress Blog' ) ), 'items' => 2, 'show_summary' => 0, 'show_author' => 0, 'show_date' => 0, ), 'planet' => array( /** * Filters the secondary link URL for the 'WordPress Events and News' dashboard widget. * * @since 2.3.0 * * @param string $link The widget's secondary link URL. */ 'link' => apply_filters( 'dashboard_secondary_link', /* translators: Link to the Planet website of the locale. */ __( 'https://planet.wordpress.org/' ) ), /** * Filters the secondary feed URL for the 'WordPress Events and News' dashboard widget. * * @since 2.3.0 * * @param string $url The widget's secondary feed URL. */ 'url' => apply_filters( 'dashboard_secondary_feed', /* translators: Link to the Planet feed of the locale. */ __( 'https://planet.wordpress.org/feed/' ) ), /** * Filters the secondary link title for the 'WordPress Events and News' dashboard widget. * * @since 2.3.0 * * @param string $title Title attribute for the widget's secondary link. */ 'title' => apply_filters( 'dashboard_secondary_title', __( 'Other WordPress News' ) ), /** * Filters the number of secondary link items for the 'WordPress Events and News' dashboard widget. * * @since 4.4.0 * * @param string $items How many items to show in the secondary feed. */ 'items' => apply_filters( 'dashboard_secondary_items', 3 ),Changelog
Introduced in 2.7.0. Unchanged from 6.7.7 through 7.1.0.
Signature, return type and hooks compared across 5 parsed releases.
About this page
- Parsed data
- Generated from the wordpress-develop 6.7.7 tag, from
src/wp-admin/includes/dashboard.php, and regenerated for each WordPress release so it tracks the code rather than a snapshot of it. - Corrections
- Something wrong on this page? Report it and it gets fixed in the next regeneration.