• Resolved cionfs

    (@cionfs)


    Hi,

    I need to add a code (social share) before the toc.
    Actually I have created this code

    add_action('the_content', 'inserisci_pulsanti_condivisione_sopra_titolo');
    
    function inserisci_pulsanti_condivisione_sopra_titolo($content) {
        // Verifica se l'elemento corrente è un articolo singolo
        if (is_single()) {
            // URL dell'articolo corrente
            $link = get_permalink();
    
            // Costruisci i pulsanti di condivisione
            $pulsanti_condivisione = '<div class="pulsanti-condivisione">';
            $pulsanti_condivisione .= '<p>Condividi questo articolo:</p>';
            $pulsanti_condivisione .= '<ul class="pulsanti-social">';
            $pulsanti_condivisione .= '<li><a  . $link . '" target="_blank"><img src="url_image" alt="Condividi su Facebook"></a></li>';
            $pulsanti_condivisione .= '<li><a  . $link . '" target="_blank"><img src="url_image" alt="Condividi su Twitter"></a></li>';
            $pulsanti_condivisione .= '<li><a  . $link . '" target="_blank"><img src="url_image" alt="Condividi su WhatsApp"></a></li>';
            $pulsanti_condivisione .= '<li><a  . $link . '" target="_blank"><img src="url_image" alt="Condividi su Telegram"></a></li>';
            $pulsanti_condivisione .= '<li><a  . $link . '" target="_blank"><img src="url_image" alt="Condividi su LinkedIn"></a></li>';
            $pulsanti_condivisione .= '<li><a  . $link . '" target="_blank"><img src="url_image" alt="Condividi su Threads"></a></li>';
            $pulsanti_condivisione .= '</ul>';
            $pulsanti_condivisione .= '</div>';
    
            // Inserisci i pulsanti di condivisione sopra il titolo dell'articolo
            $content = $pulsanti_condivisione . $content;
        }
    
        return $content;
    }
    

    but the results is this

    I need to add this before the TOC like this

    what is the variable for the TOC?

Viewing 1 replies (of 1 total)
  • Plugin Author Magazine3

    (@magazine3)

    Hi, thank you for reaching out to us. You can go to the main PHP file. Inside, you will find the ‘function the_content’. Here is the path: wp-content\plugins\Easy-Table-of-Contents\easy-table-of-contents.php where you can see the file. Inside there is code, and you can make changes accordingly.

Viewing 1 replies (of 1 total)
  • The topic ‘Insert code before TOX’ is closed to new replies.