at path:
ROOT
/
wp-includes
/
theme-compat
/
embed-404.php
run:
R
W
Run
comments.php
2.1 KB
2023-05-23 19:25:24
R
W
Run
Delete
Rename
embed-404.php
967 By
2022-03-22 20:25:04
R
W
Run
Delete
Rename
embed-content.php
3.4 KB
2021-11-18 18:50:06
R
W
Run
Delete
Rename
embed.php
481 By
2017-12-01 04:11:00
R
W
Run
Delete
Rename
error_log
12.57 KB
2026-04-05 06:35:45
R
W
Run
Delete
Rename
footer-embed.php
438 By
2016-05-25 20:05:28
R
W
Run
Delete
Rename
footer.php
1.03 KB
2023-06-19 22:27:28
R
W
Run
Delete
Rename
header-embed.php
702 By
2019-11-01 01:20:02
R
W
Run
Delete
Rename
header.php
1.85 KB
2022-11-27 02:01:18
R
W
Run
Delete
Rename
sidebar.php
4.38 KB
2023-11-26 21: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>