at path:
ROOT
/
wp-includes
/
theme-compat
/
embed-404.php
run:
R
W
Run
comments.php
2.1 KB
2023-05-23 15:25:24
R
W
Run
Delete
Rename
embed-404.php
967 By
2022-03-22 16:25:03
R
W
Run
Delete
Rename
embed-content.php
3.4 KB
2021-11-18 13:50:05
R
W
Run
Delete
Rename
embed.php
481 By
2017-11-30 23:11:00
R
W
Run
Delete
Rename
error_log
36.73 KB
2026-02-05 07:21:56
R
W
Run
Delete
Rename
footer-embed.php
438 By
2016-05-25 16:05:27
R
W
Run
Delete
Rename
footer.php
1.03 KB
2023-06-19 18:27:27
R
W
Run
Delete
Rename
header-embed.php
702 By
2019-10-31 21:20:02
R
W
Run
Delete
Rename
header.php
1.85 KB
2022-11-26 21:01:17
R
W
Run
Delete
Rename
sidebar.php
4.38 KB
2023-11-26 16:43:30
R
W
Run
Delete
Rename
error_log
up
📄
embed-404.php
Save
<?php /** * Contains the post embed content template part * * When a post is embedded in an iframe, this file is used to create the content template part * output if the active theme does not include an embed-404.php template. * * @package WordPress * @subpackage Theme_Compat * @since 4.5.0 */ ?> <div class="wp-embed"> <p class="wp-embed-heading"><?php _e( 'Oops! That embed cannot be found.' ); ?></p> <div class="wp-embed-excerpt"> <p> <?php printf( /* translators: %s: A link to the embedded site. */ __( 'It looks like nothing was found at this location. Maybe try visiting %s directly?' ), '<strong><a href="' . esc_url( home_url() ) . '">' . esc_html( get_bloginfo( 'name' ) ) . '</a></strong>' ); ?> </p> </div> <?php /** This filter is documented in wp-includes/theme-compat/embed-content.php */ do_action( 'embed_content' ); ?> <div class="wp-embed-footer"> <?php the_embed_site_title(); ?> </div> </div>