Title: install_theme_complete_actions
Published: April 25, 2014
Last modified: May 20, 2026

---

# apply_filters( ‘install_theme_complete_actions’, string[] $install_actions, object $api, string $stylesheet, WP_Theme $theme_info )

## In this article

 * [Parameters](https://developer.wordpress.org/reference/hooks/install_theme_complete_actions/?output_format=md#parameters)
 * [Source](https://developer.wordpress.org/reference/hooks/install_theme_complete_actions/?output_format=md#source)
 * [Related](https://developer.wordpress.org/reference/hooks/install_theme_complete_actions/?output_format=md#related)
 * [Changelog](https://developer.wordpress.org/reference/hooks/install_theme_complete_actions/?output_format=md#changelog)

[ Back to top](https://developer.wordpress.org/reference/hooks/install_theme_complete_actions/?output_format=md#wp--skip-link--target)

Filters the list of action links available following a single theme installation.

## 󠀁[Parameters](https://developer.wordpress.org/reference/hooks/install_theme_complete_actions/?output_format=md#parameters)󠁿

 `$install_actions`string[]

Array of theme action links.

`$api`object

Object containing WordPress.org API theme data.

`$stylesheet`string

Theme directory name.

`$theme_info`[WP_Theme](https://developer.wordpress.org/reference/classes/wp_theme/)

Theme object.

## 󠀁[Source](https://developer.wordpress.org/reference/hooks/install_theme_complete_actions/?output_format=md#source)󠁿

    ```php
    $install_actions = apply_filters( 'install_theme_complete_actions', $install_actions, $this->api, $stylesheet, $theme_info );
    ```

[View all references](https://developer.wordpress.org/reference/files/wp-admin/includes/class-theme-installer-skin.php/)
[View on Trac](https://core.trac.wordpress.org/browser/tags/7.0/src/wp-admin/includes/class-theme-installer-skin.php#L200)
[View on GitHub](https://github.com/WordPress/wordpress-develop/blob/7.0/src/wp-admin/includes/class-theme-installer-skin.php#L200-L200)

## 󠀁[Related](https://developer.wordpress.org/reference/hooks/install_theme_complete_actions/?output_format=md#related)󠁿

| Used by | Description | 
| [Theme_Installer_Skin::after()](https://developer.wordpress.org/reference/classes/theme_installer_skin/after/)`wp-admin/includes/class-theme-installer-skin.php` |

Performs an action following a single theme install.

  |

## 󠀁[Changelog](https://developer.wordpress.org/reference/hooks/install_theme_complete_actions/?output_format=md#changelog)󠁿

| Version | Description | 
| [2.8.0](https://developer.wordpress.org/reference/since/2.8.0/) | Introduced. |

## User Contributed Notes

You must [log in](https://login.wordpress.org/?redirect_to=https%3A%2F%2Fdeveloper.wordpress.org%2Freference%2Fhooks%2Finstall_theme_complete_actions%2F)
before being able to contribute a note or feedback.