0

是否有插件或其他方式...基本上在wordpress的后端我希望用户能够从下拉列表中选择文件或页面,然后显示URL,以便他们可以复制和粘贴它以便于链接?

例子:

they select a file
    document.pdf
and in a box below it displays the URL
    /wp-content/uploads/2013/10/document.pdf

那么他们可以将该 URL 复制并粘贴到他们的内容中吗?一直在寻找一段时间来解决这个问题,但到目前为止还没有运气!

如果这有帮助,我也在使用高级自定义字段?

//==================================== 已解决============ ========================//此代码获取选择字段的ID(#acf-field-select_content)并获取当前的值选定的选项。然后它将值放在文本字段(#acf-field-show_content_url)中,但在 ID 前面我回显了 'SERVER_NAME' 和 '?p=' 这是 Wordpress 的默认永久链接选项。遗憾的是,这种方式没有链接直接到文件,但到附件页面,在这种情况下这不是一个大问题

$serverName = $_SERVER['SERVER_NAME']; 
?>
<script>  
    jQuery(document).ready(function () {
        jQuery("#acf-field-select_content").change(function() {
            var str = "http://<?php echo $serverName; ?>/?p=";
            jQuery("option:selected", this).each(function() {
                str += jQuery(this).val();
            });
            jQuery("#acf-field-show_content_url").val(str);
        })
        .trigger("change");
    });
</script>
<?php }
add_filter('admin_head', 'add_admin_code');
4

2 回答 2

0

您绝对可以将高级自定义字段用于这样的事情。您可以创建一个具有“文件上传”类型的字段。如果您也有“Repeater”的付费插件,那就太好了。转发器将允许您拥有可重复的文件列表,而无需为每个上传的文件创建单独的字段。

一探究竟!ACF 中继器附加组件 [链接]

但是,如果没有插件 - 您需要为每个上传的文件创建一个单独的字段并执行以下操作:

<?php
 // Get file url and title
 $uploaded_file_1 = get_field('uploaded_file_1');
 $uploaded_file_1_url = wp_get_attachment_url( $uploaded_file_1 );
 $uploaded_file_1_title = get_the_title( $uploaded_file_1 );
?>

<!-- create dropdown with list of file names and urls -->
<select id="files">
    <option value="">
        Select a file
    </option>
    <option value="<?php echo $uploaded_file_1_url; ?>">
        <?php echo $uploaded_file_1_title; ?>
    </option>
</select>

 <input type="text" id="file-info">

 <script>
  // bind change event to dropdown, when you change the dropdown
  // get the value of the selected option and put it in the input field
  document.getElementById('files').onchange = function(){     
     document.getElementById('file-info').value = document.getElementById('files').value;
 }
 </script>

jsfiddle:http: //jsfiddle.net/N7ujB/

如果您有中继器字段附加组件

您将创建一个字段名称类似于“文件”的转发器字段。在转发器字段中,您将为“文件标题”和“文件上传”创建一个字段。

接下来,您将遍历转发器字段以显示所有上传的文档。

<!-- create dropdown with list of file names and urls -->
<select id="files">
    <option value="">
        Select a file
    </option>
    <?php

    if ( get_field('files') ) {
        // loop through the uploaded files
        while(has_sub_field('files')) {

            // set variables for file title/uri
            $file = get_sub_field('file_upload');
            $file_uri = wp_get_attachment_url( $file );
            $file_title = ( get_sub_field('file_title') ) ? get_sub_field('file_title') : get_the_title( $file );

            // generate code for each option, including the file uri and title
            echo '<option value="' . $file_uri . '">' . $file_title . '</option>';
        }
    }

    ?>
</select>
于 2013-10-21T15:07:17.313 回答
0
  1. 使用 'file name'=>'file url' 的关联数组。
  2. 使用每个循环创建显示数组的所有“文件名”元素的下拉列表。
  3. 使用全局 $customFields 保存所选“文件名”的匹配“文件 url”值(在后端它称为 $custom.
  4. 使用 $customFields 在前端显示“文件 url”vlue。
于 2013-10-21T15:26:29.943 回答