wp_get_links

The timeline below displays how wordpress function wp_get_links has changed across different WordPress versions. If a version is not listed, refer to the next available version below.

WordPress Version: 6.3

/**
 * Gets the links associated with category.
 *
 * @since 1.0.1
 * @deprecated 2.1.0 Use wp_list_bookmarks()
 * @see wp_list_bookmarks()
 *
 * @param string $args a query string
 * @return null|string
 */
function wp_get_links($args = '')
{
    _deprecated_function(__FUNCTION__, '2.1.0', 'wp_list_bookmarks()');
    if (!str_contains($args, '=')) {
        $cat_id = $args;
        $args = add_query_arg('category', $cat_id, $args);
    }
    $defaults = array('after' => '<br />', 'before' => '', 'between' => ' ', 'categorize' => 0, 'category' => '', 'echo' => true, 'limit' => -1, 'orderby' => 'name', 'show_description' => true, 'show_images' => true, 'show_rating' => false, 'show_updated' => true, 'title_li' => '');
    $parsed_args = wp_parse_args($args, $defaults);
    return wp_list_bookmarks($parsed_args);
}

WordPress Version: 5.3

/**
 * Gets the links associated with category.
 *
 * @since 1.0.1
 * @deprecated 2.1.0 Use wp_list_bookmarks()
 * @see wp_list_bookmarks()
 *
 * @param string $args a query string
 * @return null|string
 */
function wp_get_links($args = '')
{
    _deprecated_function(__FUNCTION__, '2.1.0', 'wp_list_bookmarks()');
    if (strpos($args, '=') === false) {
        $cat_id = $args;
        $args = add_query_arg('category', $cat_id, $args);
    }
    $defaults = array('after' => '<br />', 'before' => '', 'between' => ' ', 'categorize' => 0, 'category' => '', 'echo' => true, 'limit' => -1, 'orderby' => 'name', 'show_description' => true, 'show_images' => true, 'show_rating' => false, 'show_updated' => true, 'title_li' => '');
    $parsed_args = wp_parse_args($args, $defaults);
    return wp_list_bookmarks($parsed_args);
}

WordPress Version: 4.6

/**
 * Gets the links associated with category.
 *
 * @since 1.0.1
 * @deprecated 2.1.0 Use wp_list_bookmarks()
 * @see wp_list_bookmarks()
 *
 * @param string $args a query string
 * @return null|string
 */
function wp_get_links($args = '')
{
    _deprecated_function(__FUNCTION__, '2.1.0', 'wp_list_bookmarks()');
    if (strpos($args, '=') === false) {
        $cat_id = $args;
        $args = add_query_arg('category', $cat_id, $args);
    }
    $defaults = array('after' => '<br />', 'before' => '', 'between' => ' ', 'categorize' => 0, 'category' => '', 'echo' => true, 'limit' => -1, 'orderby' => 'name', 'show_description' => true, 'show_images' => true, 'show_rating' => false, 'show_updated' => true, 'title_li' => '');
    $r = wp_parse_args($args, $defaults);
    return wp_list_bookmarks($r);
}

WordPress Version: 4.4

/**
 * Gets the links associated with category.
 *
 * @since 1.0.1
 * @deprecated 2.1.0 Use wp_list_bookmarks()
 * @see wp_list_bookmarks()
 *
 * @param string $args a query string
 * @return null|string
 */
function wp_get_links($args = '')
{
    _deprecated_function(__FUNCTION__, '2.1', 'wp_list_bookmarks()');
    if (strpos($args, '=') === false) {
        $cat_id = $args;
        $args = add_query_arg('category', $cat_id, $args);
    }
    $defaults = array('after' => '<br />', 'before' => '', 'between' => ' ', 'categorize' => 0, 'category' => '', 'echo' => true, 'limit' => -1, 'orderby' => 'name', 'show_description' => true, 'show_images' => true, 'show_rating' => false, 'show_updated' => true, 'title_li' => '');
    $r = wp_parse_args($args, $defaults);
    return wp_list_bookmarks($r);
}

WordPress Version: 3.9

/**
 * Gets the links associated with category.
 *
 * @see get_links() for argument information that can be used in $args
 * @since 1.0.1
 * @deprecated 2.1.0
 * @deprecated Use wp_list_bookmarks()
 * @see wp_list_bookmarks()
 *
 * @param string $args a query string
 * @return null|string
 */
function wp_get_links($args = '')
{
    _deprecated_function(__FUNCTION__, '2.1', 'wp_list_bookmarks()');
    if (strpos($args, '=') === false) {
        $cat_id = $args;
        $args = add_query_arg('category', $cat_id, $args);
    }
    $defaults = array('after' => '<br />', 'before' => '', 'between' => ' ', 'categorize' => 0, 'category' => '', 'echo' => true, 'limit' => -1, 'orderby' => 'name', 'show_description' => true, 'show_images' => true, 'show_rating' => false, 'show_updated' => true, 'title_li' => '');
    $r = wp_parse_args($args, $defaults);
    return wp_list_bookmarks($r);
}

WordPress Version: 3.7

/**
 * Gets the links associated with category.
 *
 * @see get_links() for argument information that can be used in $args
 * @since 1.0.1
 * @deprecated 2.1
 * @deprecated Use wp_list_bookmarks()
 * @see wp_list_bookmarks()
 *
 * @param string $args a query string
 * @return null|string
 */
function wp_get_links($args = '')
{
    _deprecated_function(__FUNCTION__, '2.1', 'wp_list_bookmarks()');
    if (strpos($args, '=') === false) {
        $cat_id = $args;
        $args = add_query_arg('category', $cat_id, $args);
    }
    $defaults = array('after' => '<br />', 'before' => '', 'between' => ' ', 'categorize' => 0, 'category' => '', 'echo' => true, 'limit' => -1, 'orderby' => 'name', 'show_description' => true, 'show_images' => true, 'show_rating' => false, 'show_updated' => true, 'title_li' => '');
    $r = wp_parse_args($args, $defaults);
    return wp_list_bookmarks($r);
}