Get the name of an image

时间:2014-09-28 作者:Yudi

如何取图像的名称?例如:我上传图像image_name.jpg. 所以URL是http://localhost/xxxx/wp-content/uploads/2014/08/image_name.jpg.

所以我只想取图像的名称,而不是URL。我该怎么做?

非常感谢。

1 个回复
SO网友:Yudi

我成功了。如何发布不同类型的\\u mime\\u?我在函数中添加了post\\u mime\\u type。php

add_filter(\'upload_mimes\', \'pixelo_upload_types\');
   function pixelo_upload_types($existing_mimes=array()) {
   $existing_mimes[\'otf\'] = \'otf\';
   $existing_mimes[\'ttf\'] = \'ttf\';
return $existing_mimes; }
然后我在这里尝试了一下,但没有成功。

<?php
$args = array(
\'numberposts\'     => -1,
\'orderby\'         => \'menu_order\',
\'order\'           => \'ASC\',
\'post_type\'       => \'attachment\',
\'post_parent\'     => $post->ID,
\'post_mime_type\' => \'ttf\'
);

$font = get_posts($args);
if($font) {
    foreach($font as $key => $data) : ?>
       <option value="<?php echo $data->ID; ?>"><?php echo $data->post_title; ?></option>
    <?php endforeach;
} ?>
请帮帮我。请帮帮我。我怎样才能做到?

结束

相关推荐

Removing blog page images

我有我的blog page here 然而,在我创建的一个网站上,我不太明白在哪里可以找到代码来去除我孩子主题上的图像。我使用的是2010年的代码,我已经设置了自己的博客模板页面,但它不起作用,所以我显然编辑了错误的文件。所以不是循环。php我想要编辑的文件,以便在主博客页面上删除这些图像?<?php /* How to display all other posts. */ ?> <?php else : ?> <div i