将 WordPress Gallery 短代码 slug 更改为文件名

发布于 2024-09-10 00:39:46 字数 502 浏览 5 评论 0原文

是否可以将附件页面别名更改为引用文件名?简而言之...我使用 图库简码 构建一个简单的基于页面的图库。

我在上传过程中更改了原始文件名(如 DSC1223.jpg)(更改为 3b1871561aab.jpg),但它不会在 url 中显示为 slug。它仅使用 DSC1223。

有什么办法可以改变吗?

问候,史蒂夫

最好的方法是在我的functions.php中写这样的东西

function twentyten_filter_wp_handle_upload () {

    $upload =  wp_handle_upload();

}

add_filter( 'wp_handle_upload', 'twentyten_filter_wp_handle_upload', 10, 2);

Is it possible to change the attachment page slug to the referring filename? In short... i use the Gallery Shortcode to build a simple page based gallery.

I change the orignal filename (like DSC1223.jpg) during the upload process (to 3b1871561aab.jpg) but it does not appery as slug within the url. It uses only DSC1223.

Is there anyway to change ist?

Regards, Steve

The best way would be to write something like this in my functions.php

function twentyten_filter_wp_handle_upload () {

    $upload =  wp_handle_upload();

}

add_filter( 'wp_handle_upload', 'twentyten_filter_wp_handle_upload', 10, 2);

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

庆幸我还是我 2024-09-17 00:39:46

将其添加到哈希上传文件名插件,你应该可以开始了;

/**
 * Filter new attachments and set the post_name the same as the hashed
 * filename.
 * 
 * @param int $post_ID
 */
function change_attachment_name_to_hash($post_ID)
{
    $file = get_attached_file($post_ID);
    $info = pathinfo($file);
    $name = trim( substr($info['basename'], 0, -(1 + strlen($info['extension'])) ) );
    wp_update_post(array(
        'ID' => $post_ID,
        'post_name' => $name
    ));
}
add_action('add_attachment', 'change_attachment_name_to_hash');

如果您不确定每行的作用,请随时询问!

更新:

在将新附件保存到数据库后,此函数会挂钩 add_attachment 事件。此操作是从 wp_insert_attachment() 内部调用的。

我们首先获取附件的文件名 (get_attached_file())。然后我们使用原生 PHP 函数 pathinfo() 获取路径组件,并去掉目录路径和文件扩展名。

然后我们调用wp_update_post(),更新数据库中附件的post_name

Add this to the hash upload filename plugin and you should be good to go;

/**
 * Filter new attachments and set the post_name the same as the hashed
 * filename.
 * 
 * @param int $post_ID
 */
function change_attachment_name_to_hash($post_ID)
{
    $file = get_attached_file($post_ID);
    $info = pathinfo($file);
    $name = trim( substr($info['basename'], 0, -(1 + strlen($info['extension'])) ) );
    wp_update_post(array(
        'ID' => $post_ID,
        'post_name' => $name
    ));
}
add_action('add_attachment', 'change_attachment_name_to_hash');

Don't hesitate to ask if you're not sure what each line does!

UPDATE:

This function hooks onto the add_attachment event, just after a new attachment is saved to the database. This action is called from within wp_insert_attachment().

We first grab the filename of the attachment (get_attached_file()). Then we use a native PHP function pathinfo() to get the path components, and strip the directory path and file extension away.

Then we call wp_update_post(), updating the post_name of the attachment in the database.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文