To insert code use <code>...</code>.
How to edit section?
  • Hi there,

    I suggest a section in the advance tab to offer extra header code. I.E. Gplus asks us to enter a link...rel="publisher" line within the <head> section. As everyone know you can edit header.php but will loose your stuff with the next update. Would be great, if not available already, to have this feature.
  • 2 Comments sorted by
  • Hi,

    you can use the child theme for this.

    i think kappy somewhere promised this feature. I haven't seen it yet.


    Best regards,
    BackuPs
  • Hi,
    You can add the code to the bottom of striking/functions.php file.

    It will not override by the update.


    add_action('wp_head', 'theme_add_link_rel_publisher');
    function theme_add_link_rel_publisher() {
    echo "\n" . '<link rel="publisher" />' . "\n";
    }


    Regards,
    KaptinLin