Archive | /wp-includes/functions.php RSS feed for this section

size_format

Convert number of bytes largest unit bytes will fit into.It is easier to read 1kB than 1024 bytes and 1MB than 1048576 bytes. Converts number of bytes to human readable number by taking the number of that unit that the bytes will go into it. Supports TB value.

2899

Continue reading

set_user_setting

Add or update user interface setting.Both $name and $value can contain only ASCII letters, numbers and underscores. This function has to be used before any output has started as it calls setcookie().

2859

Continue reading

set_transient

Set/update the value of a transient.You do not need to serialize values. If the value needs to be serialized, then it will be serialized before it is set.

2857

Continue reading

set_site_transient

Set/update the value of a site transient.You do not need to serialize values, if the value needs to be serialize, then it will be serialized before it is set.

2853

Continue reading