Define namespace for a file This files namespace Calling a function in a namespace / a different namespace
All posts by
Comma Separated Strings
Convert comma separated string to array and test for entries Ensure no trailing comma that will produce a blank final array entry Examples Convert array into comma separated string
Text effects
Text Shaddow Outline Text Characters
Debug Bar plugin
Very handy debug tool wp-config.php file special options that will let it tell you more:
Options API
You can use the wordpress Options API without the Settings API (but you can’t use Settings API without Options API). The Options API is great for storing general settings for you plugging, site, etc. Store a value or array Read stored value or array You don’t have to stored a value first, get_option() will return […]
Special characters and translations
HTML Symbols, character codes etc https://www.toptal.com/designers/htmlarrows/punctuation/ https://www.toptal.com/designers/htmlarrows General use
.Typical form example
With PHP code and styling PHP CSS
Underline
Checkbox
Basic checkbox css input[type=”checkbox”] is for the actual checkbox, excluding its label Style a checkbox and its label Put it within a div Checkbox + Label on line with space added under
CSS Combinators
‘ ‘ (descendant selector) > (child selector) + (adjacent sibling selector) Select an element that is directly after another specific element. ~ (general sibling selector)