Function __global->seo_meta_set_for_explicit

Definitions

sources/content2.php

  • Explicitly sets the meta information for the specified resource.
  • Visibility: public
  • Is abstract?: No
  • Is static?: No
  • Is final?: No

Parameters

Name Type Passed by reference? Variadic? Default Set Range Description
$type ID_TEXT No No required parameter N/A N/A The type of resource (e.g. download)
$id ID_TEXT No No required parameter N/A N/A The ID of the resource
$keywords SHORT_TEXT No No required parameter N/A N/A The keywords to use
$description SHORT_TEXT No No required parameter N/A N/A The description to use

Preview

Code (PHP)

/**
 * Explicitly sets the meta information for the specified resource.
 *
 * @param  ID_TEXT $type The type of resource (e.g. download)
 * @param  ID_TEXT $id The ID of the resource
 * @param  SHORT_TEXT $keywords The keywords to use
 * @param  SHORT_TEXT $description The description to use
 */

function seo_meta_set_for_explicit(string $type, string $id, string $keywords, string $description)