Skip to content

Commit

Permalink
Merge pull request #8 from skaut/wp_get_attachment_image_src
Browse files Browse the repository at this point in the history
wp_get_attachment_image_src
  • Loading branch information
marekdedic authored Dec 8, 2019
2 parents 9dd927a + eb3e2a0 commit ef88d2c
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions stubs/WordPress/functions.php
Original file line number Diff line number Diff line change
Expand Up @@ -637,6 +637,21 @@ function wp_enqueue_script( $handle, $src = '', $deps = [], $ver = false, $in_fo
function wp_enqueue_style( $handle, $src = '', $deps = [], $ver = false, $media = '' ) {
}

/**
* @param int $attachment_id
* @param string|array $size
* @param bool $icon
*
* @return false|array {
* @type string $0
* @type int $1
* @type int $2
* @type bool $3
* }
*/
function wp_get_attachment_image_src( $attachment_id, $size = '', $icon = false ) {
}

/**
* @param string $stylesheet
* @param string $theme_root
Expand Down

0 comments on commit ef88d2c

Please sign in to comment.