2022..0707.
Kódblokk másolás gombbal – wordpress plugin
Készítettem egy wordpress plugint, hogy könnyen tudjak html, css, javascript és php kódokat beilleszteni a bejegyzésekhez.
Ez a wordpress plugin egy codeblock nevű gombot ad a klasszikus szerkesztőhöz a html kód beillesztéséhez.
Használd a klasszikus HTML-szerkesztőt vagy a codeblock rövidkódot
Demo:
<?php $args = array(<br />
‘post_type’ =>
‘attachment’,<br />
‘post_mime_type’ =>
‘<br />
application/pdf,<br />
application/rtf,<br
/>
application/msword,application/vnd.openxmlformats-officedocument.wordproce
ssingml.document,<br />
application/vnd.ms-powerpoint,<br
/>
application/zip,<br
/>
application/vnd.oasis.opendocument.text,<br
/>
application/vnd.openxmlformats-officedocument.spreadsheetml.sheet,<br
/>
application/vnd.ms-excel<br />
‘,<br
/>
‘numberposts’ => -1,<br />
‘post_status’
=> null,<br />
‘post_parent’ => get_the_ID()<br
/>
);</p>
<p>$attachments = get_posts( $args );<br />
if (
$attachments ) {<br />
foreach ( $attachments as $attachment ) {<br
/>
echo ‘<li>’;<br />
the_attachment_link(
$attachment->ID, true );<br />
echo ‘</li>’;<br
/>
}<br />
} ?>
Kattints a kódra a vágólapra másoláshoz
letölthető innen: https://www.tigaman.com/codeblock-with-copy-button-wordpress-plugin/