mirror of
https://github.com/DanielnetoDotCom/YouPHPTube
synced 2025-10-03 09:49:28 +02:00
SEO Improvement
This commit is contained in:
parent
df4f11b401
commit
3ed0213f38
1 changed files with 4 additions and 4 deletions
|
@ -60,25 +60,25 @@ $replace = [$permaLink, $img, $title, $embedURL, $videoLengthInSeconds];
|
||||||
</div>
|
</div>
|
||||||
<div class="tab-pane" id="tabEmbed">
|
<div class="tab-pane" id="tabEmbed">
|
||||||
<strong><i class="fas fa-share-square"></i> <?php echo __("Embed"); ?> (Iframe): <?php getButtontCopyToClipboard('textAreaEmbed'); ?></strong>
|
<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);
|
$code = str_replace($search, $replace, $advancedCustom->embedCodeTemplate);
|
||||||
echo htmlentities($code);
|
echo htmlentities($code);
|
||||||
?>
|
?>
|
||||||
</textarea>
|
</textarea>
|
||||||
<strong><i class="fas fa-share-square"></i> <?php echo __("Embed"); ?> (Object): <?php getButtontCopyToClipboard('textAreaEmbedObject'); ?></strong>
|
<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);
|
$code = str_replace($search, $replace, $advancedCustom->embedCodeTemplateObject);
|
||||||
echo htmlentities($code);
|
echo htmlentities($code);
|
||||||
?>
|
?>
|
||||||
</textarea>
|
</textarea>
|
||||||
<strong><i class="fas fa-share-square"></i> <?php echo __("Link"); ?> (HTML): <?php getButtontCopyToClipboard('textAreaHTML'); ?></strong>
|
<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);
|
$code = str_replace($search, $replace, $advancedCustom->htmlCodeTemplate);
|
||||||
echo htmlentities($code);
|
echo htmlentities($code);
|
||||||
?>
|
?>
|
||||||
</textarea>
|
</textarea>
|
||||||
<strong><i class="fas fa-share-square"></i> <?php echo __("Link"); ?> (BBCode): <?php getButtontCopyToClipboard('textAreaBBCode'); ?></strong>
|
<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);
|
$code = str_replace($search, $replace, $advancedCustom->BBCodeTemplate);
|
||||||
echo htmlentities($code);
|
echo htmlentities($code);
|
||||||
?>
|
?>
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue