1
0
Fork 0
mirror of https://github.com/DanielnetoDotCom/YouPHPTube synced 2025-10-03 01:39:24 +02:00

SEO Improvement

This commit is contained in:
DanieL 2022-07-01 13:19:23 -03:00
parent df4f11b401
commit 3ed0213f38

View file

@ -60,25 +60,25 @@ $replace = [$permaLink, $img, $title, $embedURL, $videoLengthInSeconds];
</div>
<div class="tab-pane" id="tabEmbed">
<strong><i class="fas fa-share-square"></i> <?php echo __("Embed"); ?> (Iframe): <?php getButtontCopyToClipboard('textAreaEmbed'); ?></strong>
<textarea class="form-control <?php echo getCSSAnimationClassAndStyle($type, $loaderSequenceName); ?> min-width: 100%" rows="5" id="textAreaEmbed" readonly="readonly"><?php
<textarea class="form-control <?php echo getCSSAnimationClassAndStyle($type, $loaderSequenceName); ?> min-width: 100%; margin: 10px 0 20px 0;" rows="5" id="textAreaEmbed" readonly="readonly"><?php
$code = str_replace($search, $replace, $advancedCustom->embedCodeTemplate);
echo htmlentities($code);
?>
</textarea>
<strong><i class="fas fa-share-square"></i> <?php echo __("Embed"); ?> (Object): <?php getButtontCopyToClipboard('textAreaEmbedObject'); ?></strong>
<textarea class="form-control <?php echo getCSSAnimationClassAndStyle($type, $loaderSequenceName); ?> min-width: 100%" rows="5" id="textAreaEmbedObject" readonly="readonly"><?php
<textarea class="form-control <?php echo getCSSAnimationClassAndStyle($type, $loaderSequenceName); ?> min-width: 100%; margin: 10px 0 20px 0;" rows="5" id="textAreaEmbedObject" readonly="readonly"><?php
$code = str_replace($search, $replace, $advancedCustom->embedCodeTemplateObject);
echo htmlentities($code);
?>
</textarea>
<strong><i class="fas fa-share-square"></i> <?php echo __("Link"); ?> (HTML): <?php getButtontCopyToClipboard('textAreaHTML'); ?></strong>
<textarea class="form-control <?php echo getCSSAnimationClassAndStyle($type, $loaderSequenceName); ?> min-width: 100%" rows="5" id="textAreaHTML" readonly="readonly"><?php
<textarea class="form-control <?php echo getCSSAnimationClassAndStyle($type, $loaderSequenceName); ?> min-width: 100%; margin: 10px 0 20px 0;" rows="5" id="textAreaHTML" readonly="readonly"><?php
$code = str_replace($search, $replace, $advancedCustom->htmlCodeTemplate);
echo htmlentities($code);
?>
</textarea>
<strong><i class="fas fa-share-square"></i> <?php echo __("Link"); ?> (BBCode): <?php getButtontCopyToClipboard('textAreaBBCode'); ?></strong>
<textarea class="form-control <?php echo getCSSAnimationClassAndStyle($type, $loaderSequenceName); ?> min-width: 100%" rows="5" id="textAreaBBCode" readonly="readonly"><?php
<textarea class="form-control <?php echo getCSSAnimationClassAndStyle($type, $loaderSequenceName); ?> min-width: 100%; margin: 10px 0 20px 0;" rows="5" id="textAreaBBCode" readonly="readonly"><?php
$code = str_replace($search, $replace, $advancedCustom->BBCodeTemplate);
echo htmlentities($code);
?>