foot'; /** * Public plugin name for use as a dashboard heading. * * After properly displaying in dashboard headings until WPv5.4, the above started * in WP 5.5 being torn apart as if the headline was `text-align:justify` and not * the last line. That ugly display bug badly affected the plugin's communication. * The only working solution found so far is using `position:fixed` in one heading * that isn't translated, and dropping the logo in another, translatable heading. * * @var string * * @since 2.0.4 * @todo Remove. * @deprecated */ const C_STR_PLUGIN_HEADING_NAME = 'footnotes'; /** * HTML element for the ‘love’ symbol. * * @var string * * @since 1.5.0 * @todo Remove. * @deprecated */ const C_STR_LOVE_SYMBOL = ''; /** * HTML element for the ‘love’ symbol used in dashboard heading * * @var string * * @since 2.0.4 * @todo Remove. * @deprecated */ const C_STR_LOVE_SYMBOL_HEADING = ''; /** * Shortcode to NOT display the ‘LOVE ME’ slug on certain pages. * * @var string * * @since 1.5.0 * @todo Remove. * @deprecated */ const C_STR_NO_LOVE_SLUG = '[[no footnotes: love]]'; }